Skip to content

Commit

Permalink
bump the last version for a13
Browse files Browse the repository at this point in the history
  • Loading branch information
MonwF committed Nov 26, 2023
1 parent e0d37cd commit 108fa20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ def sFile = file(keystoreProperties['storeFile'])
def sPassword = keystoreProperties['storePassword']
def kAlias = keystoreProperties['keyAlias']
def kPassword = keystoreProperties['keyPassword']
def lastVersion = 65
def lastVersionName = "23.10.30"
def lastVersion = 66
def lastVersionName = "23.11.26"

if (gradle.startParameter.taskNames.contains(":app:assembleDevelop")) {
lastVersion += 1
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/name/monwf/customiuizer/mods/System.java
Original file line number Diff line number Diff line change
Expand Up @@ -2184,7 +2184,7 @@ protected void after(final AfterHookCallback param) throws Throwable {
private static int actionBarColor = NOCOLOR;

private static boolean isIgnored(Context context) {
return MainModule.mPrefs.getStringSet("system_statusbarcolor_apps").contains(context.getPackageName());
return !MainModule.mPrefs.getStringSet("system_statusbarcolor_apps").contains(context.getPackageName());
}

private static int getActionBarColor(Window window, int oldColor) {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'com.android.tools.build:gradle:8.1.4'
}
}

Expand All @@ -27,6 +27,6 @@ allprojects {
}
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}

0 comments on commit 108fa20

Please sign in to comment.