Skip to content

Commit 36d1427

Browse files
authoredFeb 11, 2021
Merge branch 'dev_alpha12' into jv/jn_a11y_improvements
2 parents d473072 + 19ae77e commit 36d1427

File tree

101 files changed

+756
-684
lines changed

Some content is hidden

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

101 files changed

+756
-684
lines changed
 

‎Crane/app/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ dependencies {
123123
implementation Libs.Hilt.android
124124
kapt Libs.Hilt.compiler
125125

126+
// FIXME: only needed for Compose alpha12
127+
androidTestImplementation Libs.AndroidX.Activity.activityCompose
128+
126129
androidTestImplementation Libs.JUnit.junit
127130
androidTestImplementation Libs.AndroidX.Test.runner
128131
androidTestImplementation Libs.AndroidX.Test.espressoCore

‎Crane/build.gradle

+1-16
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ buildscript {
3131
}
3232

3333
plugins {
34-
id 'com.diffplug.spotless' version '5.8.2'
34+
id 'com.diffplug.spotless' version '5.10.0'
3535
}
3636

3737
subprojects {
@@ -69,18 +69,3 @@ subprojects {
6969
}
7070
}
7171
}
72-
73-
subprojects {
74-
// FIXME: Only needed for Compose 1.0.0-alpha12 snapshots
75-
configurations.configureEach {
76-
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
77-
if (details.requested.group == 'androidx.lifecycle' &&
78-
details.requested.name != 'lifecycle-viewmodel-compose') {
79-
details.useVersion('2.3.0-rc01')
80-
}
81-
if (details.requested.group == 'androidx.savedstate') {
82-
details.useVersion('1.1.0-rc01')
83-
}
84-
}
85-
}
86-
}

0 commit comments

Comments
 (0)
Please sign in to comment.