Skip to content

Commit 9da4094

Browse files
Fixed Gradle ktx issue
1 parent 170f524 commit 9da4094

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

android/Java/HelloWorld/app/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins {
22
id 'com.android.application'
3-
id 'org.jetbrains.kotlin.android'
43
}
54

65
android {
@@ -38,7 +37,6 @@ dependencies {
3837
implementation 'androidx.appcompat:appcompat:1.2.0'
3938
implementation 'com.google.android.material:material:1.2.1'
4039
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
41-
implementation 'androidx.core:core-ktx:+'
4240
testImplementation 'junit:junit:4.+'
4341
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
4442
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

android/Java/Usecase/TinyBarcode/app/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins {
22
id 'com.android.application'
3-
id 'org.jetbrains.kotlin.android'
43
}
54

65
android {
@@ -35,7 +34,6 @@ dependencies {
3534
implementation 'androidx.appcompat:appcompat:1.2.0'
3635
implementation 'com.google.android.material:material:1.2.1'
3736
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
38-
implementation 'androidx.core:core-ktx:+'
3937
testImplementation 'junit:junit:4.+'
4038
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
4139
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

android/Kotlin/HelloWorld/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
implementation 'androidx.appcompat:appcompat:1.2.0'
3535
implementation 'com.google.android.material:material:1.2.1'
3636
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
37-
implementation 'androidx.core:core-ktx:+'
37+
implementation 'androidx.core:core-ktx:1.9.0'
3838
testImplementation 'junit:junit:4.+'
3939
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
4040
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

0 commit comments

Comments
 (0)