Skip to content

Commit 2fa7722

Browse files
committed
fix: kotlin version fix
1 parent 7dc8bdc commit 2fa7722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vendor/gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ apply plugin: 'com.android.library'
66
apply plugin: 'kotlin-android'
77
apply plugin: 'kotlin-parcelize'
88

9-
def computeKotlinVersion = { -> project.hasProperty("kotlinVersion") ? kotlinVersion : "1.6.0" }
109
def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 31 as int }
1110
def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 31 as int }
1211
def computeBuildToolsVersion = { ->
1312
project.hasProperty("buildToolsVersion") ? buildToolsVersion : "31.0.0"
1413
}
1514
buildscript {
15+
def computeKotlinVersion = { -> project.hasProperty("kotlinVersion") ? kotlinVersion : "1.6.0" }
1616
def kotlinVersion = computeKotlinVersion()
1717
repositories {
1818
google()

0 commit comments

Comments
 (0)