Skip to content

Commit b6a6f2a

Browse files
committed
chore: android kotlin version change
1 parent 8a095b3 commit b6a6f2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
3-
def kotlin_version = "1.8.22"
3+
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["CryptoRsa_kotlinVersion"]
44

55
repositories {
66
google()
@@ -82,7 +82,7 @@ repositories {
8282
google()
8383
}
8484

85-
def kotlin_version = getExtOrDefault("kotlinVersion")
85+
def kotlin_version = "1.8.22"
8686

8787
dependencies {
8888
// For < 0.71, this will be from the local maven repo

0 commit comments

Comments
 (0)