Skip to content

Commit 01c67cc

Browse files
committed
chore: Bump AGP to 8.11.2 and Kotlin to 2.2.10
1 parent faa738d commit 01c67cc

File tree

5 files changed

+22
-11
lines changed

5 files changed

+22
-11
lines changed

app/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
17+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
18+
1619
plugins {
1720
id("com.android.application")
1821
id("org.jetbrains.kotlin.android")
@@ -46,8 +49,10 @@ android {
4649
sourceCompatibility = JavaVersion.VERSION_11
4750
targetCompatibility = JavaVersion.VERSION_11
4851
}
49-
kotlinOptions {
50-
jvmTarget = "11"
52+
kotlin {
53+
compilerOptions {
54+
jvmTarget = JvmTarget.fromTarget("11")
55+
}
5156
}
5257
buildFeatures {
5358
compose = true

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
androidGradlePlugin = "8.9.2"
2+
androidGradlePlugin = "8.11.2"
33
androidxActivity = "1.10.1"
44
androidxAnnotation = "1.9.1"
55
androidxComposeBom = "2025.04.01"
@@ -14,9 +14,9 @@ androidxWindowManager = "1.3.0"
1414
bouncyCastle = "1.70"
1515
dokka = "2.0.0"
1616
junit4 = "4.13.2"
17-
kotlin = "2.1.0"
18-
kotlinxCoroutines = "1.10.1"
19-
ksp = "2.1.0-1.0.29"
17+
kotlin = "2.2.10"
18+
kotlinxCoroutines = "1.10.2"
19+
ksp = "2.2.10-2.0.2"
2020
mavenPublishPlugin = "0.32.0"
2121
protobuf = "4.29.2"
2222
protobufPlugin = "0.9.4"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri May 02 19:47:21 WIB 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

safebox-crypto/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
import com.vanniktech.maven.publish.SonatypeHost
17+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
1718

1819
plugins {
1920
id("com.android.library")
@@ -46,8 +47,10 @@ android {
4647
targetCompatibility = JavaVersion.VERSION_11
4748
}
4849

49-
kotlinOptions {
50-
jvmTarget = "11"
50+
kotlin {
51+
compilerOptions {
52+
jvmTarget = JvmTarget.fromTarget("11")
53+
}
5154
}
5255
}
5356

safebox/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
import com.vanniktech.maven.publish.SonatypeHost
17+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
1718

1819
plugins {
1920
id("com.android.library")
@@ -45,8 +46,10 @@ android {
4546
targetCompatibility = JavaVersion.VERSION_11
4647
}
4748

48-
kotlinOptions {
49-
jvmTarget = "11"
49+
kotlin {
50+
compilerOptions {
51+
jvmTarget = JvmTarget.fromTarget("11")
52+
}
5053
}
5154
}
5255

0 commit comments

Comments
 (0)