Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
R3.8.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuunoakaihitomi committed May 27, 2021
1 parent 382e161 commit a262c51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ android {
//targetSdkVersion compileSdkVersion
targetSdkVersion 30
// 版本号:发布日期
versionCode 20210528
versionCode 20210529
// 版本名说明: R3.x.y.z (R3:Refactoring 第三次重构,z:Quick Fix序号)
versionName 'R3.8.6.1'
versionName 'R3.8.6.2'
resConfigs "en", "zh-rCN"

buildConfigField 'String', 'BUILD_TIME', '\"' + new Date() + '\"'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,12 @@ object PowerExecution {
if (manager?.currentInterruptionFilter != NotificationManager.INTERRUPTION_FILTER_ALL ||
!manager.areNotificationsEnabled()
) {
mainHandler.postDelayed(toastDelay) {
Toast.makeText(
activity.application,
R.string.enable_accessibility_service_hint,
Toast.LENGTH_LONG
).show()
}
// 不延迟防止被识别为后台Toast造成无法显示
Toast.makeText(
activity.application,
R.string.enable_accessibility_service_hint,
Toast.LENGTH_LONG
).show()
return@setUserGuideRunnable
}
val cid = "accessibility_service_hint"
Expand Down

0 comments on commit a262c51

Please sign in to comment.