Skip to content

Commit

Permalink
Update 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
YuKongA committed Aug 24, 2024
1 parent 1362b32 commit 00dfe26
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId = namespace
minSdk = 34
targetSdk = 35
versionCode = 2400
versionName = "2.4.0"
versionCode = 2410
versionName = "2.4.1"
}
val properties = Properties()
runCatching { properties.load(project.rootProject.file("local.properties").inputStream()) }
Expand Down Expand Up @@ -61,7 +61,7 @@ android {
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
kotlin.jvmToolchain(17)
packaging {
resources. excludes += "**"
resources.excludes += "**"
applicationVariants.all {
outputs.all {
(this as BaseVariantOutputImpl).outputFileName = "MediaControlBlur-$versionName.apk"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class MainHook : IXposedHookLoadPackage {
val getStatusBarState = hookParam1.result as Int
val isInLockScreen = getStatusBarState == 1
val isDarkMode = isDarkMode(context)
if (lockScreenStatus == null || lockScreenStatus != isInLockScreen || darkModeStatus != isDarkMode) {
if (lockScreenStatus == null || darkModeStatus == null || lockScreenStatus != isInLockScreen || darkModeStatus != isDarkMode) {
if (BuildConfig.DEBUG) Log.dx("getStatusBarState: $getStatusBarState")
if (BuildConfig.DEBUG) Log.dx("darkModeStatus: $isDarkMode")
lockScreenStatus = isInLockScreen
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
agp = "8.5.2"
ezXHelper = "2.2.0"
kotlin = "2.0.10"
kotlin = "2.0.20"
xposed = "82"

[libraries]
Expand Down

0 comments on commit 00dfe26

Please sign in to comment.