1:添加签到弹框,当没有签到的时候,进入应用60秒弹出,当已经签到,不在弹框,添加结束清除定时器

This commit is contained in:
2025-12-30 19:22:39 +08:00
parent 3f1b8ee2fa
commit 7f881260aa

View File

@@ -132,12 +132,13 @@ open class Application : CommonAppContext() {
return
if (!activity.isFinishing && !activity.isDestroyed) {
val signInDialog = SignInDialog(getContext())
val signInDialog = SignInDialog(activity)
signInDialog.setOnCloseListener {
null
}
signInDialog.show()
}
TimerManager.cancelTimer(CustomMsgCode.CODE_USER_SIGN_IN)
}
}
})