Wizard: update libraries versions

This commit is contained in:
Ilya Kirillov
2020-10-10 16:11:15 +03:00
parent fa8951c19e
commit 3ef12e32ee
9 changed files with 20 additions and 20 deletions
@@ -8,9 +8,9 @@ group = 'testGroupId'
version = '1.0-SNAPSHOT' version = '1.0-SNAPSHOT'
dependencies { dependencies {
implementation 'com.google.android.material:material:1.2.0' implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
} }
android { android {
@@ -8,9 +8,9 @@ group = "testGroupId"
version = "1.0-SNAPSHOT" version = "1.0-SNAPSHOT"
dependencies { dependencies {
implementation("com.google.android.material:material:1.2.0") implementation("com.google.android.material:material:1.2.1")
implementation("androidx.appcompat:appcompat:1.2.0") implementation("androidx.appcompat:appcompat:1.2.0")
implementation("androidx.constraintlayout:constraintlayout:1.1.3") implementation("androidx.constraintlayout:constraintlayout:2.0.2")
} }
android { android {
@@ -9,9 +9,9 @@ version = '1.0-SNAPSHOT'
dependencies { dependencies {
implementation project(':shared') implementation project(':shared')
implementation 'com.google.android.material:material:1.2.0' implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
} }
android { android {
@@ -9,9 +9,9 @@ version = "1.0-SNAPSHOT"
dependencies { dependencies {
implementation(project(":shared")) implementation(project(":shared"))
implementation("com.google.android.material:material:1.2.0") implementation("com.google.android.material:material:1.2.1")
implementation("androidx.appcompat:appcompat:1.2.0") implementation("androidx.appcompat:appcompat:1.2.0")
implementation("androidx.constraintlayout:constraintlayout:1.1.3") implementation("androidx.constraintlayout:constraintlayout:2.0.2")
} }
android { android {
@@ -30,13 +30,13 @@ kotlin {
} }
androidMain { androidMain {
dependencies { dependencies {
implementation 'com.google.android.material:material:1.2.0' implementation 'com.google.android.material:material:1.2.1'
} }
} }
androidTest { androidTest {
dependencies { dependencies {
implementation kotlin('test-junit') implementation kotlin('test-junit')
implementation 'junit:junit:4.12' implementation 'junit:junit:4.13'
} }
} }
iosMain { iosMain {
@@ -28,13 +28,13 @@ kotlin {
} }
val androidMain by getting { val androidMain by getting {
dependencies { dependencies {
implementation("com.google.android.material:material:1.2.0") implementation("com.google.android.material:material:1.2.1")
} }
} }
val androidTest by getting { val androidTest by getting {
dependencies { dependencies {
implementation(kotlin("test-junit")) implementation(kotlin("test-junit"))
implementation("junit:junit:4.12") implementation("junit:junit:4.13")
} }
} }
val iosMain by getting val iosMain by getting
@@ -36,13 +36,13 @@ kotlin {
} }
androidMain { androidMain {
dependencies { dependencies {
implementation 'com.google.android.material:material:1.2.0' implementation 'com.google.android.material:material:1.2.1'
} }
} }
androidTest { androidTest {
dependencies { dependencies {
implementation kotlin('test-junit') implementation kotlin('test-junit')
implementation 'junit:junit:4.12' implementation 'junit:junit:4.13'
} }
} }
iosMain { iosMain {
@@ -34,13 +34,13 @@ kotlin {
} }
val androidMain by getting { val androidMain by getting {
dependencies { dependencies {
implementation("com.google.android.material:material:1.2.0") implementation("com.google.android.material:material:1.2.1")
} }
} }
val androidTest by getting { val androidTest by getting {
dependencies { dependencies {
implementation(kotlin("test-junit")) implementation(kotlin("test-junit"))
implementation("junit:junit:4.12") implementation("junit:junit:4.13")
} }
} }
val iosMain by getting val iosMain by getting
@@ -10,15 +10,15 @@ import org.jetbrains.kotlin.tools.projectWizard.settings.version.Version
@Suppress("ClassName", "SpellCheckingInspection") @Suppress("ClassName", "SpellCheckingInspection")
object Versions { object Versions {
val KOTLIN = version("1.4.10") // used as fallback version val KOTLIN = version("1.4.10") // used as fallback version
val GRADLE = version("6.3") val GRADLE = version("6.6.1")
val KTOR = version("1.4.0") val KTOR = version("1.4.0")
val JUNIT = version("4.12") val JUNIT = version("4.13")
val JUNIT5 = version("5.6.0") val JUNIT5 = version("5.6.0")
object ANDROID { object ANDROID {
val ANDROID_MATERIAL = version("1.2.0") val ANDROID_MATERIAL = version("1.2.1")
val ANDROIDX_APPCOMPAT = version("1.2.0") val ANDROIDX_APPCOMPAT = version("1.2.0")
val ANDROIDX_CONSTRAINTLAYOUT = version("1.1.3") val ANDROIDX_CONSTRAINTLAYOUT = version("2.0.2")
} }
object KOTLINX { object KOTLINX {