Skip to content

Commit a133d21

Browse files
committed
Update to gradlew 8.2.1
1 parent 8c602a2 commit a133d21

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

auth-lib/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ android {
4747
buildConfig = true
4848
}
4949

50+
compileOptions {
51+
sourceCompatibility = JavaVersion.VERSION_1_8
52+
targetCompatibility = JavaVersion.VERSION_1_8
53+
}
54+
55+
kotlinOptions {
56+
jvmTarget = "1.8"
57+
}
58+
5059
defaultConfig {
5160
minSdk = 16
5261
targetSdk = 33

auth-sample/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ android {
2727
compileSdk = 33
2828
buildToolsVersion = "33.0.0"
2929

30+
compileOptions {
31+
sourceCompatibility = JavaVersion.VERSION_1_8
32+
targetCompatibility = JavaVersion.VERSION_1_8
33+
}
34+
3035
signingConfigs {
3136
getByName("debug") {
3237
storeFile = file("keystore/example.keystore")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ buildscript {
2727
google()
2828
}
2929
dependencies {
30-
classpath("com.android.tools.build:gradle:7.4.2")
30+
classpath("com.android.tools.build:gradle:8.2.2")
3131
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
3232
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.9.10")
3333
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)