Skip to content

Commit 90d61ca

Browse files
committed
update to 3.20.4
1 parent d9ff010 commit 90d61ca

10 files changed

+24
-13
lines changed

app/build.gradle

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ android {
1212
multiDexEnabled true
1313

1414
// Naming app bundles
15-
setArchivesBaseName("${parent.name}-v${versionCode}")
15+
tasks.withType(Jar).configureEach {
16+
archiveBaseName.set("${parent.name}-v${versionCode}")
17+
}
1618
}
1719

1820
bundle {
@@ -47,7 +49,7 @@ dependencies {
4749
* If you've missed some versions you've to also follow update guide for those versions
4850
*/
4951

50-
implementation 'com.github.Donnnno:candybar-foss:3.19.0'
52+
implementation 'com.github.Donnnno:candybar-foss:3.20.4'
5153

5254
}
5355

app/src/main/AndroidManifest.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@
1616
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" tools:node="remove" />
1717
-->
1818

19-
<!-- Remove the following line if you're using cloud-based wallpapers -->
19+
<!-- Remove the following line if you're using cloud-based wallpapers
20+
-->
2021
<uses-permission android:name="android.permission.INTERNET" tools:node="remove" />
2122

22-
<application
23+
<application
2324
tools:ignore="GoogleAppIndexingWarning,GoogleAppIndexingUrlError"
2425
android:name=".applications.CandyBar"
2526
android:allowBackup="true"

app/src/main/assets/color_burst.jpg

330 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"name": "Color Burst",
4+
"author": "Greyson Joralemon",
5+
"url": "assets://color_burst.jpg"
6+
}
7+
]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@
247247
Now when "Wallpaper" section is selected in your icon pack app's navigation drawer,
248248
your wallpaper app will be launched if it's installed. If it's not installed, then the Play Store page
249249
will be opened to install your wallpaper app. -->
250-
<string name="wallpaper_json">https://zixpo.github.io/candybar-sources/walls_alt.json</string>
250+
<string name="wallpaper_json">assets://wallpapers_offline.json</string>
251251

252252
<!-- Enable wallpaper downloading
253253
If disabled, your users will only be able to apply wallpapers from the dashboard.

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

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<item>omega</item>
2727
<item>pixel</item>
2828
<item>poco</item>
29+
<item>projectivy</item>
2930
<item>samsung_one_ui</item>
3031
<item>smart</item>
3132
<item>solo</item>

build.gradle

+5-5
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.2.2'
8+
classpath 'com.android.tools.build:gradle:8.7.3'
99
}
1010
}
1111

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

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

2727
tasks.register('clean', Delete) {
28-
delete rootProject.buildDir
29-
}
28+
delete layout.buildDirectory
29+
}

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
# http://www.gradle.org/docs/current/userguide/build_environment.html
99

1010
# Specifies the JVM arguments used for the daemon process.
11-
# The setting is particularly useful for tweaking memory settings.
11+
# The setting is particularly useful for tweaking memory setings.
1212
android.enableJetifier=true
1313
android.useAndroidX=true
1414
org.gradle.jvmargs=-Xms512m -Xmx1024m
1515

1616
# When configured, Gradle will run in incubating parallel mode.
1717
# This option should only be used with decoupled projects. More details, visit
1818
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
19-
# org.gradle.parallel=true
19+
# org.gradle.parallel=true

gradle/wrapper/gradle-wrapper.properties

+1-1
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.2-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip

gradlew

100644100755
File mode changed.

0 commit comments

Comments
 (0)