Skip to content

Commit a355e95

Browse files
committed
Update fragment-ktx dependency
1 parent c6b0103 commit a355e95

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

samplejava/build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ android {
1212
targetSdkVersion 30
1313
versionCode 1
1414
versionName "1.0"
15+
16+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1517
}
1618

1719
buildTypes {
@@ -34,8 +36,12 @@ android {
3436
dependencies {
3537
// Add new dependencies
3638
implementation "io.getstream:stream-chat-android-ui-components:4.5.4"
37-
3839
implementation 'io.coil-kt:coil:1.1.1'
40+
41+
implementation 'androidx.appcompat:appcompat:1.2.0'
3942
implementation 'com.google.android.material:material:1.3.0'
40-
implementation "androidx.fragment:fragment-ktx:1.3.0-rc02"
43+
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
44+
testImplementation 'junit:junit:4.+'
45+
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
46+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
4147
}

samplekotlin/build.gradle

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ android {
1313
targetSdkVersion 30
1414
versionCode 1
1515
versionName "1.0"
16+
17+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1618
}
1719

1820
buildTypes {
@@ -37,8 +39,15 @@ android {
3739
dependencies {
3840
// Add new dependencies
3941
implementation "io.getstream:stream-chat-android-ui-components:4.5.4"
40-
4142
implementation 'io.coil-kt:coil:1.1.1'
43+
implementation "androidx.fragment:fragment-ktx:1.3.0"
44+
45+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
46+
implementation 'androidx.core:core-ktx:1.3.2'
47+
implementation 'androidx.appcompat:appcompat:1.2.0'
4248
implementation 'com.google.android.material:material:1.3.0'
43-
implementation "androidx.fragment:fragment-ktx:1.3.0-rc02"
49+
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
50+
testImplementation 'junit:junit:4.+'
51+
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
52+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
4453
}

0 commit comments

Comments
 (0)