Skip to content

Commit

Permalink
Update for v3.17.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsamurmu committed Jun 9, 2023
1 parent 3edd6e1 commit 17fb529
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ android {
targetSdkVersion rootProject.ext.TargetSdk
versionCode 1
versionName '1.0'
multiDexEnabled true

// Naming app bundles
setArchivesBaseName("${parent.name}-v${versionCode}")
Expand Down Expand Up @@ -63,8 +62,25 @@ dependencies {
* If you've missed some versions you've to also follow update guide for those versions
*/

implementation 'com.github.zixpo:candybar:3.17.3'
implementation 'com.github.zixpo:candybar:3.17.4'

// TODO: Remove `//` below to enable OneSignal
//implementation 'com.onesignal:OneSignal:[4.0.0, 4.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 ->
copy {
from "$projectDir/src/main/res/xml/$file"
into "$projectDir/src/main/assets/"
}
}
}

tasks.whenTaskAdded { task ->
if (task.name == 'assembleDebug' || task.name == 'assembleRelease') {
task.dependsOn copyXMLs
}
}

0 comments on commit 17fb529

Please sign in to comment.