Skip to content

Commit a39dec5

Browse files
Upgrade auf Gradle 9.0.1
1 parent e5098e7 commit a39dec5

4 files changed

Lines changed: 18 additions & 6 deletions

File tree

app/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ plugins {
44

55
android {
66
namespace 'de.mide.android.broadcastreceiver'
7-
compileSdk 34
7+
compileSdk {
8+
version = release(36)
9+
}
810

911
defaultConfig {
1012
applicationId "de.mide.android.broadcastreceiver"
@@ -23,8 +25,8 @@ android {
2325
}
2426
}
2527
compileOptions {
26-
sourceCompatibility JavaVersion.VERSION_1_8
27-
targetCompatibility JavaVersion.VERSION_1_8
28+
sourceCompatibility JavaVersion.VERSION_11
29+
targetCompatibility JavaVersion.VERSION_11
2830
}
2931
}
3032

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '8.2.2' apply false
3+
id 'com.android.application' version '9.0.1' apply false
44
}

gradle.properties

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,14 @@ android.useAndroidX=true
1818
# Enables namespacing of each library's R class so that its R class includes only the
1919
# resources declared in the library itself and none from the library's dependencies,
2020
# thereby reducing the size of the R class for that library
21-
android.nonTransitiveRClass=true
21+
android.nonTransitiveRClass=true
22+
android.defaults.buildfeatures.resvalues=true
23+
android.sdk.defaultTargetSdkToCompileSdkIfUnset=false
24+
android.enableAppCompileTimeRClass=false
25+
android.usesSdkInManifest.disallowed=false
26+
android.uniquePackageNames=false
27+
android.dependency.useConstraints=true
28+
android.r8.strictFullModeForKeepRules=false
29+
android.r8.optimizedResourceShrinking=false
30+
android.builtInKotlin=false
31+
android.newDsl=false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Mar 21 16:25:19 CET 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)