Wizard: update libraries versions
This commit is contained in:
+2
-2
@@ -8,9 +8,9 @@ group = 'testGroupId'
|
||||
version = '1.0-SNAPSHOT'
|
||||
|
||||
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.constraintlayout:constraintlayout:1.1.3'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
|
||||
}
|
||||
|
||||
android {
|
||||
|
||||
+2
-2
@@ -8,9 +8,9 @@ group = "testGroupId"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
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.constraintlayout:constraintlayout:1.1.3")
|
||||
implementation("androidx.constraintlayout:constraintlayout:2.0.2")
|
||||
}
|
||||
|
||||
android {
|
||||
|
||||
+2
-2
@@ -9,9 +9,9 @@ version = '1.0-SNAPSHOT'
|
||||
|
||||
dependencies {
|
||||
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.constraintlayout:constraintlayout:1.1.3'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
|
||||
}
|
||||
|
||||
android {
|
||||
|
||||
+2
-2
@@ -9,9 +9,9 @@ version = "1.0-SNAPSHOT"
|
||||
|
||||
dependencies {
|
||||
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.constraintlayout:constraintlayout:1.1.3")
|
||||
implementation("androidx.constraintlayout:constraintlayout:2.0.2")
|
||||
}
|
||||
|
||||
android {
|
||||
|
||||
+2
-2
@@ -30,13 +30,13 @@ kotlin {
|
||||
}
|
||||
androidMain {
|
||||
dependencies {
|
||||
implementation 'com.google.android.material:material:1.2.0'
|
||||
implementation 'com.google.android.material:material:1.2.1'
|
||||
}
|
||||
}
|
||||
androidTest {
|
||||
dependencies {
|
||||
implementation kotlin('test-junit')
|
||||
implementation 'junit:junit:4.12'
|
||||
implementation 'junit:junit:4.13'
|
||||
}
|
||||
}
|
||||
iosMain {
|
||||
|
||||
+2
-2
@@ -28,13 +28,13 @@ kotlin {
|
||||
}
|
||||
val androidMain by getting {
|
||||
dependencies {
|
||||
implementation("com.google.android.material:material:1.2.0")
|
||||
implementation("com.google.android.material:material:1.2.1")
|
||||
}
|
||||
}
|
||||
val androidTest by getting {
|
||||
dependencies {
|
||||
implementation(kotlin("test-junit"))
|
||||
implementation("junit:junit:4.12")
|
||||
implementation("junit:junit:4.13")
|
||||
}
|
||||
}
|
||||
val iosMain by getting
|
||||
|
||||
+2
-2
@@ -36,13 +36,13 @@ kotlin {
|
||||
}
|
||||
androidMain {
|
||||
dependencies {
|
||||
implementation 'com.google.android.material:material:1.2.0'
|
||||
implementation 'com.google.android.material:material:1.2.1'
|
||||
}
|
||||
}
|
||||
androidTest {
|
||||
dependencies {
|
||||
implementation kotlin('test-junit')
|
||||
implementation 'junit:junit:4.12'
|
||||
implementation 'junit:junit:4.13'
|
||||
}
|
||||
}
|
||||
iosMain {
|
||||
|
||||
+2
-2
@@ -34,13 +34,13 @@ kotlin {
|
||||
}
|
||||
val androidMain by getting {
|
||||
dependencies {
|
||||
implementation("com.google.android.material:material:1.2.0")
|
||||
implementation("com.google.android.material:material:1.2.1")
|
||||
}
|
||||
}
|
||||
val androidTest by getting {
|
||||
dependencies {
|
||||
implementation(kotlin("test-junit"))
|
||||
implementation("junit:junit:4.12")
|
||||
implementation("junit:junit:4.13")
|
||||
}
|
||||
}
|
||||
val iosMain by getting
|
||||
|
||||
+4
-4
@@ -10,15 +10,15 @@ import org.jetbrains.kotlin.tools.projectWizard.settings.version.Version
|
||||
@Suppress("ClassName", "SpellCheckingInspection")
|
||||
object Versions {
|
||||
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 JUNIT = version("4.12")
|
||||
val JUNIT = version("4.13")
|
||||
val JUNIT5 = version("5.6.0")
|
||||
|
||||
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_CONSTRAINTLAYOUT = version("1.1.3")
|
||||
val ANDROIDX_CONSTRAINTLAYOUT = version("2.0.2")
|
||||
}
|
||||
|
||||
object KOTLINX {
|
||||
|
||||
Reference in New Issue
Block a user