Skip to content

Commit 463dc04

Browse files
authored
Merge pull request #262 from hotwired/update-dependencies
Update project dependencies
2 parents 04a7d09 + be4c20e commit 463dc04

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ buildscript {
77
}
88

99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.3.1'
11-
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20'
10+
classpath 'com.android.tools.build:gradle:7.4.2'
11+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
1212
}
1313
}
1414

demo/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ android {
4444

4545
dependencies {
4646
implementation fileTree(include: ['*.jar'], dir: 'libs')
47-
implementation 'com.google.android.material:material:1.7.0'
47+
implementation 'com.google.android.material:material:1.8.0'
4848
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4949
implementation 'androidx.recyclerview:recyclerview:1.2.1'
50-
implementation 'androidx.browser:browser:1.4.0'
50+
implementation 'androidx.browser:browser:1.5.0'
5151
implementation 'com.github.bumptech.glide:glide:4.14.2'
5252

5353
implementation project(':turbo')

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

turbo/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ android {
6868

6969
dependencies {
7070
implementation fileTree(dir: 'libs', include: ['*.jar'])
71-
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.7.20'
72-
implementation 'com.google.android.material:material:1.7.0'
71+
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.8.0'
72+
implementation 'com.google.android.material:material:1.8.0'
7373

7474
// AndroidX
7575
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
7676
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
7777
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
7878

7979
// JSON
80-
implementation 'com.google.code.gson:gson:2.10'
80+
implementation 'com.google.code.gson:gson:2.10.1'
8181

8282
// Networking/API
8383
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
@@ -88,21 +88,21 @@ dependencies {
8888
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
8989

9090
// Exported AndroidX dependencies
91-
api 'androidx.appcompat:appcompat:1.5.1'
91+
api 'androidx.appcompat:appcompat:1.6.1'
9292
api 'androidx.core:core-ktx:1.9.0'
93-
api 'androidx.webkit:webkit:1.5.0'
94-
api 'androidx.fragment:fragment-ktx:1.5.4'
93+
api 'androidx.webkit:webkit:1.6.0'
94+
api 'androidx.fragment:fragment-ktx:1.5.5'
9595
api 'androidx.navigation:navigation-fragment-ktx:2.5.3'
9696
api 'androidx.navigation:navigation-ui-ktx:2.5.3'
9797

9898
// Tests
99-
testImplementation 'androidx.test:core:1.4.0' // Robolectric
99+
testImplementation 'androidx.test:core:1.5.0' // Robolectric
100100
testImplementation 'androidx.navigation:navigation-testing:2.5.3'
101-
testImplementation 'androidx.arch.core:core-testing:2.1.0'
101+
testImplementation 'androidx.arch.core:core-testing:2.2.0'
102102
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4'
103-
testImplementation 'org.assertj:assertj-core:3.23.1'
104-
testImplementation 'org.robolectric:robolectric:4.8.1'
105-
testImplementation 'org.mockito:mockito-core:4.8.1'
103+
testImplementation 'org.assertj:assertj-core:3.24.2'
104+
testImplementation 'org.robolectric:robolectric:4.9.2'
105+
testImplementation 'org.mockito:mockito-core:4.11.0'
106106
testImplementation 'com.nhaarman:mockito-kotlin:1.6.0'
107107
testImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0'
108108
testImplementation 'junit:junit:4.13.2'

0 commit comments

Comments
 (0)