Skip to content

Commit 2ac1eed

Browse files
committed
- updated gradle dependencies
- removed kotlin android extension plugin
1 parent fd2520a commit 2ac1eed

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

app/build.gradle

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ apply plugin: 'com.android.application'
2727
apply plugin: 'kotlin-android'
2828
apply plugin: 'kotlin-kapt'
2929
apply plugin: 'dagger.hilt.android.plugin'
30-
apply plugin: 'kotlin-android-extensions'
3130
apply plugin: "androidx.navigation.safeargs.kotlin"
3231

3332
android {
@@ -108,19 +107,19 @@ dependencies {
108107
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
109108
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${coroutine_version}"
110109

111-
def nav_version = "2.3.0"
112-
def room_version = "2.2.5"
113-
implementation 'androidx.core:core-ktx:1.3.0'
114-
implementation 'androidx.appcompat:appcompat:1.1.0'
115-
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
110+
def nav_version = "2.3.3"
111+
def room_version = "2.2.6"
112+
implementation 'androidx.core:core-ktx:1.3.2'
113+
implementation 'androidx.appcompat:appcompat:1.2.0'
114+
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
116115

117-
implementation 'com.google.android.material:material:1.1.0'
116+
implementation 'com.google.android.material:material:1.3.0'
118117

119118
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
120119
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
121120

122-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0"
123-
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha04"
121+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.3.0"
122+
implementation "androidx.recyclerview:recyclerview:1.2.0-beta01"
124123

125124
implementation "androidx.room:room-runtime:$room_version"
126125
implementation "androidx.room:room-ktx:$room_version"
@@ -151,8 +150,8 @@ dependencies {
151150
testImplementation "io.mockk:mockk:1.9.3"
152151
testImplementation 'androidx.arch.core:core-testing:2.1.0'
153152

154-
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
155-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
153+
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
154+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
156155
androidTestImplementation 'androidx.arch.core:core-testing:2.1.0'
157156
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${coroutine_version}"
158157
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:${coroutine_version}"

0 commit comments

Comments
 (0)