Skip to content

Commit 562254b

Browse files
Update all dependencies (main) (android#300)
* Update all dependencies * [Main] Update Kotlin version separately, add fix for Migration codelab. * [Main] Downgrade Kotlin version * [Main] Upgrade room version Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jolanda Verhoef <JolandaVerhoef@users.noreply.github.com>
1 parent 348ea80 commit 562254b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2246
-1549
lines changed

.github/renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@
55
],
66
"baseBranches": [
77
"main", "end"
8+
],
9+
"packageRules": [
10+
{
11+
"groupName": "Kotlin Dependencies",
12+
"matchPackagePrefixes": ["org.jetbrains.kotlin"]
13+
}
814
]
915
}

AccessibilityCodelab/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ android {
8989
}
9090

9191
dependencies {
92-
def composeBom = platform('androidx.compose:compose-bom:2022.10.00')
92+
def composeBom = platform('androidx.compose:compose-bom:2022.12.00')
9393
implementation(composeBom)
9494
testImplementation(composeBom)
9595
androidTestImplementation(composeBom)
@@ -109,7 +109,7 @@ dependencies {
109109
androidTestImplementation "androidx.compose.ui:ui-test"
110110
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
111111

112-
def accompanist_version = '0.27.0'
112+
def accompanist_version = '0.28.0'
113113
implementation "com.google.accompanist:accompanist-swiperefresh:$accompanist_version"
114114
implementation "com.google.accompanist:accompanist-insets:$accompanist_version"
115115
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
@@ -128,12 +128,12 @@ dependencies {
128128

129129
implementation 'androidx.navigation:navigation-compose:2.5.3'
130130

131-
androidTestImplementation 'androidx.test:rules:1.4.0'
132-
androidTestImplementation 'androidx.test:runner:1.4.0'
131+
androidTestImplementation 'androidx.test:rules:1.5.0'
132+
androidTestImplementation 'androidx.test:runner:1.5.2'
133133

134134
// TODO: Bump to latest after Espresso 3.5.0 goes stable
135135
// (due to https://github.com/robolectric/robolectric/issues/6593)
136-
testImplementation 'org.robolectric:robolectric:4.9'
136+
testImplementation 'org.robolectric:robolectric:4.9.2'
137137
}
138138

139139
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {

AccessibilityCodelab/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ buildscript {
2727
}
2828

2929
plugins {
30-
id 'com.diffplug.spotless' version '6.11.0'
30+
id 'com.diffplug.spotless' version '6.12.1'
3131
}
3232

3333
subprojects {
2.32 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)