Skip to content

Commit 1616420

Browse files
committed
Update to Compose 1.0.0-beta03
1 parent 81fda55 commit 1616420

2 files changed

Lines changed: 4 additions & 14 deletions

File tree

build.gradle

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,6 @@ subprojects {
8181
}
8282
}
8383

84-
// FIXME: Only needed for Compose 1.0.0-beta03 snapshots
85-
configurations.configureEach {
86-
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
87-
if (details.requested.group == 'androidx.lifecycle'
88-
&& details.requested.version == '2.3.1') {
89-
details.useVersion('2.4.0-SNAPSHOT')
90-
}
91-
}
92-
}
93-
9484
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach { compile ->
9585
kotlinOptions {
9686
// Treat all Kotlin warnings as errors

buildSrc/src/main/java/com/google/accompanist/buildsrc/dependencies.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ object Libs {
5959

6060
const val dynamicanimation = "androidx.dynamicanimation:dynamicanimation-ktx:1.0.0-alpha03"
6161

62-
const val appcompat = "androidx.appcompat:appcompat:1.3.0-beta01"
62+
const val appcompat = "androidx.appcompat:appcompat:1.3.0-rc01"
6363

6464
object Compose {
65-
const val snapshot = "7217131"
66-
const val version = "1.0.0-SNAPSHOT"
65+
const val snapshot = ""
66+
const val version = "1.0.0-beta03"
6767

6868
@JvmStatic
6969
val snapshotUrl: String
@@ -99,7 +99,7 @@ object Libs {
9999
const val core1_5_0 = "androidx.core:core:1.5.0-beta03"
100100

101101
object Activity {
102-
const val activityCompose = "androidx.activity:activity-compose:1.3.0-SNAPSHOT"
102+
const val activityCompose = "androidx.activity:activity-compose:1.3.0-alpha05"
103103
}
104104
}
105105

0 commit comments

Comments
 (0)