Skip to content

Commit 70b3ba3

Browse files
committed
Upgrade to Gradle 8.0
1 parent 6243f34 commit 70b3ba3

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

app/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,11 @@ android {
9898
}
9999

100100
packagingOptions {
101-
// remove two files which belong to jsoup
102-
// no idea how they ended up in the META-INF dir...
103-
exclude 'META-INF/README.md'
104-
exclude 'META-INF/CHANGES'
101+
resources {
102+
// remove two files which belong to jsoup
103+
// no idea how they ended up in the META-INF dir...
104+
excludes += ['META-INF/README.md', 'META-INF/CHANGES']
105+
}
105106
}
106107
}
107108

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.4.0'
10+
classpath 'com.android.tools.build:gradle:8.0.0'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212

1313
// NOTE: Do not place your application dependencies here; they belong

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
android.defaults.buildfeatures.buildconfig=true
12
android.enableJetifier=false
3+
android.nonFinalResIds=false
4+
android.nonTransitiveRClass=false
25
android.useAndroidX=true
36
org.gradle.jvmargs=-Xmx2048M
47
systemProp.file.encoding=utf-8
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
4-
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
4+
distributionSha256Sum=4159b938ec734a8388ce03f52aa8f3c7ed0d31f5438622545de4f83a89b79788
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)