Skip to content

Commit 498ac08

Browse files
committed
upgrade dependencies
1 parent 74dda14 commit 498ac08

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,23 +67,23 @@ android {
6767

6868
dependencies {
6969
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
70-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
70+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
7171

7272
// AndroidX
7373
implementation "androidx.core:core-ktx:1.10.1"
74-
implementation 'androidx.annotation:annotation:1.7.0'
74+
implementation 'androidx.annotation:annotation:1.7.1'
7575
implementation 'androidx.appcompat:appcompat:1.6.1'
7676
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
77-
implementation 'androidx.recyclerview:recyclerview:1.3.1'
77+
implementation 'androidx.recyclerview:recyclerview:1.3.2'
7878
implementation 'androidx.preference:preference-ktx:1.2.1'
7979
implementation 'androidx.core:core-splashscreen:1.0.1'
80-
implementation 'androidx.fragment:fragment-ktx:1.6.1'
80+
implementation 'androidx.fragment:fragment-ktx:1.6.2'
8181
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2'
8282
implementation 'androidx.datastore:datastore-preferences:1.0.0'
8383

8484
implementation 'com.google.android.material:material:1.9.0'
8585
implementation 'com.google.guava:guava:27.0.1-android'
86-
implementation 'com.google.code.gson:gson:2.8.9'
86+
implementation 'com.google.code.gson:gson:2.10.1'
8787
implementation('com.octo.android.robospice:robospice:1.4.14')
8888
implementation('com.octo.android.robospice:robospice-google-http-client:1.4.14') {
8989
exclude (group: 'org.apache.httpcomponents', module: 'httpclient')
@@ -102,7 +102,7 @@ dependencies {
102102

103103
implementation 'com.evernote:android-job:1.4.3'
104104

105-
implementation 'commons-io:commons-io:2.6'
105+
implementation 'commons-io:commons-io:2.13.0'
106106

107107
// Emoji
108108
implementation 'com.vdurmont:emoji-java:4.0.0'
@@ -119,8 +119,8 @@ dependencies {
119119
implementation 'com.squareup.okhttp3:logging-interceptor'
120120

121121
// Hilt
122-
implementation "com.google.dagger:hilt-android:2.44"
123-
kapt "com.google.dagger:hilt-compiler:2.44"
122+
implementation "com.google.dagger:hilt-android:$hilt_version"
123+
kapt "com.google.dagger:hilt-compiler:$hilt_version"
124124

125125
testImplementation 'junit:junit:4.13.2'
126126
testImplementation 'com.google.truth:truth:1.1.3'
@@ -135,7 +135,7 @@ dependencies {
135135
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.5.1'
136136
androidTestImplementation 'androidx.test:rules:1.5.0'
137137
androidTestImplementation 'com.google.truth:truth:1.1.3'
138-
androidTestImplementation 'org.mockito:mockito-android:2.28.2'
138+
androidTestImplementation 'org.mockito:mockito-android:5.8.0'
139139
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0'
140140
androidTestImplementation project(':mockserver')
141141
androidTestUtil 'androidx.test:orchestrator:1.4.2'

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.8.22'
4+
ext.kotlin_version = '1.9.21'
5+
ext.hilt_version = '2.50'
56
repositories {
67
google()
78
mavenCentral()
89
}
910
dependencies {
1011
classpath 'com.android.tools.build:gradle:7.4.2'
1112
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12-
classpath 'com.google.gms:google-services:4.3.15'
13+
classpath 'com.google.gms:google-services:4.4.0'
1314
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
14-
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
15+
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
1516
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
1617
}
1718
}

0 commit comments

Comments
 (0)