This repository was archived by the owner on Aug 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
buildSrc/src/main/java/com/google/android/material/composethemeadapter Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -51,10 +51,8 @@ subprojects {
51
51
mavenCentral()
52
52
jcenter()
53
53
54
- if (Libs.AndroidX.Compose . version. endsWith(" SNAPSHOT" )) {
55
- maven {
56
- url " https://androidx.dev/snapshots/builds/${ Libs.AndroidX.Compose.snapshot} /artifacts/ui/repository/"
57
- }
54
+ if (! Libs.AndroidX.Compose . snapshot. isEmpty()) {
55
+ maven { url Libs.AndroidX.Compose . snapshotUrl }
58
56
}
59
57
}
60
58
Original file line number Diff line number Diff line change @@ -41,8 +41,13 @@ object Libs {
41
41
42
42
object AndroidX {
43
43
object Compose {
44
- const val snapshot = " "
45
- const val version = " 0.1.0-dev17"
44
+ const val snapshot = " 6765009"
45
+
46
+ @JvmStatic
47
+ val snapshotUrl: String
48
+ get() = " https://androidx.dev/snapshots/builds/$snapshot /artifacts/ui/repository/"
49
+
50
+ private const val version = " 1.0.0-SNAPSHOT"
46
51
47
52
const val runtime = " androidx.compose.runtime:runtime:$version "
48
53
const val foundation = " androidx.compose.foundation:foundation:${version} "
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ org.gradle.parallel=true
26
26
# #########################
27
27
28
28
GROUP =com.google.android.material
29
- VERSION_NAME =0.1 .0-SNAPSHOT
29
+ VERSION_NAME =1.0 .0-SNAPSHOT
30
30
31
31
POM_DESCRIPTION =A library that enables reuse of Material Components for Android themes for theming in Jetpack Compose
32
32
You can’t perform that action at this time.
0 commit comments