Skip to content

Commit 06e31c1

Browse files
authored
Gradle migration to 8.0.0 - Patch 1 (#33)
1 parent 8bb2784 commit 06e31c1

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ buildscript {
66
}
77
dependencies {
88
classpath 'com.google.gms:google-services:4.3.15'
9-
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4'
9+
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.5'
1010
}
1111
}
1212

1313
plugins {
14-
id 'com.android.application' version '7.4.2' apply false
15-
id 'com.android.library' version '7.4.2' apply false
14+
id 'com.android.application' version '8.0.0' apply false
15+
id 'com.android.library' version '8.0.0' apply false
1616
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
1717
}

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ kotlin.code.style=official
2020
# Enables namespacing of each library's R class so that its R class includes only the
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
23-
android.nonTransitiveRClass=true
23+
android.nonTransitiveRClass=true
24+
android.defaults.buildfeatures.buildconfig=true
25+
android.nonFinalResIds=false

gradle/common.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ android {
2020
}
2121
}
2222
compileOptions {
23-
sourceCompatibility JavaVersion.VERSION_1_8
24-
targetCompatibility JavaVersion.VERSION_1_8
23+
sourceCompatibility JavaVersion.VERSION_17
24+
targetCompatibility JavaVersion.VERSION_17
2525
}
2626
kotlinOptions {
27-
jvmTarget = '1.8'
27+
jvmTarget = '17'
2828
}
2929
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Jan 31 14:40:24 GMT+02:00 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)