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.
kotlinVersion
1 parent 0595e35 commit cff03e8Copy full SHA for cff03e8
packages/default-storage/android/config.gradle
@@ -3,8 +3,10 @@ import java.nio.file.Paths
3
def DEFAULT_KOTLIN_VERSION = "1.9.20"
4
def DEFAULT_ROOM_VERSION = "2.4.3"
5
6
+def kotlinVersion = getKotlinVersion(DEFAULT_KOTLIN_VERSION)
7
+
8
project.ext.AsyncStorageConfig = [
- kotlinVersion : getKotlinVersion(DEFAULT_KOTLIN_VERSION),
9
+ kotlinVersion : kotlinVersion,
10
kspVersion : getKspVersion(kotlinVersion),
11
roomVersion : getPropertyOfDefault('AsyncStorage_next_roomVersion', DEFAULT_ROOM_VERSION),
12
minSdkVersion : safeExtGet('minSdkVersion', 23),
@@ -116,4 +118,4 @@ ext.resolveModulePath = { packageName ->
116
118
}
117
119
120
return null
-}
121
+}
0 commit comments