Wizard: update Kotlin version for tests to dev one

Needed for support latest syntax of Gradle dsl for js
This commit is contained in:
Ilya Kirillov
2020-04-09 15:26:36 +03:00
parent 9badcae692
commit 4e91f1c607
117 changed files with 720 additions and 109 deletions
@@ -1,6 +1,6 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android' version '1.3.70'
id 'org.jetbrains.kotlin.android' version 'KOTLIN_VERSION'
id 'kotlin-android-extensions'
}
group = 'testGroupId'
@@ -11,6 +11,9 @@ repositories {
google()
jcenter()
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/kotlin-dev'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.1.0'
@@ -1,6 +1,6 @@
plugins {
id("com.android.application")
kotlin("android") version "1.3.70"
kotlin("android") version "KOTLIN_VERSION"
id("kotlin-android-extensions")
}
group = "testGroupId"
@@ -11,6 +11,9 @@ repositories {
google()
jcenter()
mavenCentral()
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
}
}
dependencies {
implementation("androidx.core:core-ktx:1.1.0")
@@ -3,4 +3,7 @@ version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/kotlin-dev'
}
}
@@ -3,4 +3,7 @@ version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
}
}
@@ -1,9 +1,12 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/kotlin-dev'
}
}
resolutionStrategy {
eachPlugin {
@@ -1,9 +1,12 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
}
}
resolutionStrategy {
eachPlugin {