We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a095b3 commit b6a6f2aCopy full SHA for b6a6f2a
android/build.gradle
@@ -1,6 +1,6 @@
1
buildscript {
2
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
3
- def kotlin_version = "1.8.22"
+ def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["CryptoRsa_kotlinVersion"]
4
5
repositories {
6
google()
@@ -82,7 +82,7 @@ repositories {
82
83
}
84
85
-def kotlin_version = getExtOrDefault("kotlinVersion")
+def kotlin_version = "1.8.22"
86
87
dependencies {
88
// For < 0.71, this will be from the local maven repo
0 commit comments