Skip to content

Commit

Permalink
fix: missing kotlinVersion property (#1042)
Browse files Browse the repository at this point in the history
fix missing property
  • Loading branch information
krizzu committed Nov 29, 2023
1 parent 0595e35 commit cff03e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/default-storage/android/config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ import java.nio.file.Paths
def DEFAULT_KOTLIN_VERSION = "1.9.20"
def DEFAULT_ROOM_VERSION = "2.4.3"

def kotlinVersion = getKotlinVersion(DEFAULT_KOTLIN_VERSION)

project.ext.AsyncStorageConfig = [
kotlinVersion : getKotlinVersion(DEFAULT_KOTLIN_VERSION),
kotlinVersion : kotlinVersion,
kspVersion : getKspVersion(kotlinVersion),
roomVersion : getPropertyOfDefault('AsyncStorage_next_roomVersion', DEFAULT_ROOM_VERSION),
minSdkVersion : safeExtGet('minSdkVersion', 23),
Expand Down Expand Up @@ -116,4 +118,4 @@ ext.resolveModulePath = { packageName ->
}

return null
}
}

0 comments on commit cff03e8

Please sign in to comment.