We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9ed140 commit 2821da5Copy full SHA for 2821da5
android/build.gradle
@@ -37,7 +37,9 @@ buildscript {
37
// kotlin version is dictated by rootProject extension or property in gradle.properties
38
ext.asyncStorageKtVersion = rootProject.ext.has('kotlinVersion')
39
? rootProject.ext['kotlinVersion']
40
- : getVersionOrDefault('AsyncStorage_kotlinVersion', '1.5.31')
+ : rootProject.hasProperty('AsyncStorage_kotlinVersion')
41
+ ? rootProject.properties['AsyncStorage_kotlinVersion']
42
+ : '1.5.31'
43
44
repositories {
45
google()
0 commit comments