Skip to content

Commit

Permalink
Update for v3.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsamurmu committed Jul 25, 2024
1 parent a97560b commit 9cc9338
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ dependencies {
* If you've missed some versions you've to also follow update guide for those versions
*/

implementation 'com.github.zixpo:candybar:3.20.1'
implementation 'com.github.zixpo:candybar:3.20.2'

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

// Code for automatically copying appfilter.xml and drawable.xml
// from `res/xml` directory to `assets` directory
task copyXMLs {
['appfilter.xml', 'drawable.xml'].each {file ->
tasks.register('copyXMLs') {
['appfilter.xml', 'drawable.xml'].each { file ->
copy {
from "$projectDir/src/main/res/xml/$file"
into "$projectDir/src/main/assets/"
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'com.android.tools.build:gradle:8.5.1'
}
}

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

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

0 comments on commit 9cc9338

Please sign in to comment.