Skip to content

Commit

Permalink
gradle: Bump to latest AGP and Gradle version
Browse files Browse the repository at this point in the history
Signed-off-by: Aayush Gupta <[email protected]>
  • Loading branch information
theimpulson committed May 30, 2024
1 parent d9642ae commit 18c85a7
Show file tree
Hide file tree
Showing 7 changed files with 258 additions and 163 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ android {
languageVersion = "1.8"
}

packagingOptions {
exclude("META-INF/LICENSE.md")
exclude("META-INF/LICENSE-notice.md")
packaging {
resources {
excludes += listOf("META-INF/LICENSE.md", "META-INF/LICENSE-notice.md")
}
}

testOptions.unitTests {
Expand Down
2 changes: 1 addition & 1 deletion build.plugins.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# https://android.googlesource.com/platform/external/kotlinc/+/refs/tags/android-14.0.0_r29/build.txt
kotlin = "1.9.0"

androidGradle = "8.1.2"
androidGradle = "8.4.1"
protobuf = "0.9.4"
ktlint = "11.5.0"
9 changes: 5 additions & 4 deletions contactsbackup/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
targetSdk = libs.versions.targetSdk.get().toInt()

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments(mapOf("disableAnalytics" to "true"))
testInstrumentationRunnerArguments["disableAnalytics"] = "true"
}

compileOptions {
Expand All @@ -32,9 +32,10 @@ android {
jvmTarget = JavaVersion.VERSION_17.toString()
}

packagingOptions {
exclude("META-INF/LICENSE.md")
exclude("META-INF/LICENSE-notice.md")
packaging {
resources {
excludes += listOf("META-INF/LICENSE.md", "META-INF/LICENSE-notice.md")
}
}

testOptions.unitTests {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
10 changes: 6 additions & 4 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#Fri Aug 19 10:56:09 IST 2022
#Thu May 30 09:49:42 IST 2024
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionSha256Sum=544c35d6bd849ae8a5ed0bcea39ba677dc40f49df7d1835561582da2009b961d
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
zipStorePath=wrapper/dists
Loading

0 comments on commit 18c85a7

Please sign in to comment.