Updated Kotlin version to 1.4.10, but couldn't get Gradle plugin 1.4.10 to work (getting "Collection is empty" error without additional information)
This commit is contained in:
parent
acb1433dc6
commit
4b21e6c4e2
|
@ -7,7 +7,7 @@ ext {
|
|||
|
||||
/* MPP / basic dependencies */
|
||||
|
||||
kotlinVersion = '1.3.72'
|
||||
kotlinVersion = '1.4.10'
|
||||
kotlinCoroutinesVersion = "1.3.7"
|
||||
|
||||
|
||||
|
@ -96,13 +96,14 @@ ext {
|
|||
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.3.72'
|
||||
// ext.kotlin_version = '1.4.10'
|
||||
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:4.0.0'
|
||||
classpath 'com.android.tools.build:gradle:4.0.1'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
// classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
||||
|
||||
|
|
Loading…
Reference in New Issue