Skip to content

Commit cff03e8

Browse files
author
Krzysztof Borowy
authored
fix: missing kotlinVersion property (#1042)
fix missing property
1 parent 0595e35 commit cff03e8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/default-storage/android/config.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ import java.nio.file.Paths
33
def DEFAULT_KOTLIN_VERSION = "1.9.20"
44
def DEFAULT_ROOM_VERSION = "2.4.3"
55

6+
def kotlinVersion = getKotlinVersion(DEFAULT_KOTLIN_VERSION)
7+
68
project.ext.AsyncStorageConfig = [
7-
kotlinVersion : getKotlinVersion(DEFAULT_KOTLIN_VERSION),
9+
kotlinVersion : kotlinVersion,
810
kspVersion : getKspVersion(kotlinVersion),
911
roomVersion : getPropertyOfDefault('AsyncStorage_next_roomVersion', DEFAULT_ROOM_VERSION),
1012
minSdkVersion : safeExtGet('minSdkVersion', 23),
@@ -116,4 +118,4 @@ ext.resolveModulePath = { packageName ->
116118
}
117119

118120
return null
119-
}
121+
}

0 commit comments

Comments
 (0)