Skip to content

Commit 3a5facd

Browse files
committed
Update candybar to v3.22.2
1 parent d545ec6 commit 3a5facd

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdk rootProject.ext.CompileSdk
4+
compileSdk = rootProject.ext.CompileSdk
55

66
namespace 'com.perfect.icon'
77

@@ -39,7 +39,7 @@ base {
3939

4040
java {
4141
toolchain {
42-
languageVersion = JavaLanguageVersion.of(11)
42+
languageVersion = JavaLanguageVersion.of(17)
4343
}
4444
}
4545

@@ -53,7 +53,7 @@ dependencies {
5353
* If you've missed some versions you've to also follow update guide for those versions
5454
*/
5555

56-
implementation 'com.github.zixpo:candybar:3.21.1'
56+
implementation 'com.github.zixpo:candybar:3.22.2'
5757

5858
// TODO: Remove `//` below to enable OneSignal
5959
//implementation 'com.onesignal:OneSignal:[5.0.0, 5.99.99]'

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
android:label="@string/app_name"
2828
android:supportsRtl="true"
2929
android:theme="@style/Theme.App.Starting"
30-
tools:targetApi="n">
30+
android:enableOnBackInvokedCallback="true"
31+
tools:targetApi="33">
3132

3233
<activity
3334
android:name=".activities.MainActivity"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
appfilter.xml and drawable.xml are automatically copied from the res/xml directory.
2+
If you want to edit these files then edit them in res/xml directory.
3+
appfilter and drawable in this directory are overwritten.

app/src/main/res/values/launchers.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@
1717
<item>holo</item>
1818
<item>holo_hd</item>
1919
<item>hyperion</item>
20+
<item>ion_launcher</item>
2021
<item>kiss</item>
2122
<item>kvaesitso</item>
2223
<item>lawnchair</item>
24+
<item>lawnchair_legacy</item>
2325
<item>lg_home</item>
2426
<item>lucid</item>
2527
<item>microsoft</item>
26-
<item>moto</item>
28+
<item>mlauncher</item>
29+
<item>moto_launcher</item>
2730
<item>niagara</item>
2831
<item>nothing</item>
2932
<item>nougat</item>

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath 'com.android.tools.build:gradle:8.7.3'
8+
classpath 'com.android.tools.build:gradle:8.13.0'
99
}
1010
}
1111

@@ -19,8 +19,8 @@ allprojects {
1919

2020
rootProject.ext {
2121
MinSdk = 21
22-
TargetSdk = 35
23-
CompileSdk = 35
22+
TargetSdk = 36
23+
CompileSdk = 36
2424
}
2525
}
2626

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip

0 commit comments

Comments
 (0)