File tree 20 files changed +35
-203
lines changed
Crane/buildSrc/src/main/java/com/example/crane/buildsrc
buildSrc/src/main/java/com/example/jetcaster/buildsrc
buildSrc/src/main/java/com/example/compose/jetchat/buildsrc
buildSrc/src/main/java/com/example/jetsnack/buildsrc
buildSrc/src/main/java/com/example/compose/jetsurvey/buildsrc
buildSrc/src/main/java/com/example/owl/buildsrc
buildSrc/src/main/java/com/example/compose/rally/buildsrc
20 files changed +35
-203
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ object Versions {
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha11 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha12 "
25
25
const val ktLint = " com.pinterest:ktlint:${Versions .ktLint} "
26
26
const val googleMaps = " com.google.android.libraries.maps:maps:3.1.0-beta"
27
27
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ buildscript {
24
24
}
25
25
26
26
dependencies {
27
- classpath ' com.android.tools.build:gradle:4.2.0-alpha11 '
27
+ classpath ' com.android.tools.build:gradle:4.2.0-alpha12 '
28
28
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -84,13 +84,7 @@ android {
84
84
}
85
85
86
86
buildFeatures {
87
- // We turn off the Compose feature for now, due to using Compose SNAPSHOTs where the
88
- // Compose compiler artifact has changed artifact group/name.
89
- // Instead we add the compiler manually below in the dependencies {}. Also see
90
- // the root build.gradle for info on how to apply the plugin.
91
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
92
-
93
- // compose true
87
+ compose true
94
88
}
95
89
96
90
composeOptions {
@@ -108,8 +102,6 @@ dependencies {
108
102
109
103
implementation Libs.AndroidX.Lifecycle . viewmodel
110
104
111
- kotlinCompilerPlugin Libs.AndroidX.Compose . compiler
112
-
113
105
implementation Libs.AndroidX.Compose . foundation
114
106
implementation Libs.AndroidX.Compose . material
115
107
implementation Libs.AndroidX.Compose . materialIconsExtended
Original file line number Diff line number Diff line change @@ -64,13 +64,7 @@ subprojects {
64
64
}
65
65
}
66
66
67
- // Create a configuration which allows us to intercept the JARs, and add them to
68
- // Kotlin Compiler freeCompilerArgs. This is needed because we can't currently use the
69
- // built-in `compose` feature in AGP, since it depends on the old Compose Compiler artifacts.
70
- // TODO: Remove this once AGP uses the new Compose Compiler artifact name
71
- def compilerPluginConfig = project. configurations. create(" kotlinCompilerPlugin" )
72
-
73
- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach { compile ->
67
+ tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach {
74
68
kotlinOptions {
75
69
// Treat all Kotlin warnings as errors
76
70
allWarningsAsErrors = true
@@ -87,16 +81,5 @@ subprojects {
87
81
// Set JVM target to 1.8
88
82
jvmTarget = " 1.8"
89
83
}
90
-
91
- compile. dependsOn(compilerPluginConfig)
92
- compile. doFirst {
93
- if (! compilerPluginConfig. isEmpty()) {
94
- // Add the compiler plugin JARs using the -Xplugin flag
95
- compile. kotlinOptions. freeCompilerArgs + =
96
- " -Xplugin=${ compilerPluginConfig.files.first()} "
97
- // Need to turn on the IR compiler too
98
- compile. kotlinOptions. useIR = true
99
- }
100
- }
101
84
}
102
85
}
Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ object Versions {
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha12 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha13 "
25
25
const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.0.9"
26
26
27
27
const val junit = " junit:junit:4.13"
28
28
29
29
const val material = " com.google.android.material:material:1.1.0"
30
30
31
31
object Accompanist {
32
- private const val version = " 0.2.3.compose-6860046-SNAPSHOT "
32
+ private const val version = " 0.3.0 "
33
33
const val coil = " dev.chrisbanes.accompanist:accompanist-coil:$version "
34
34
}
35
35
@@ -61,10 +61,8 @@ object Libs {
61
61
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha02"
62
62
63
63
object Compose {
64
- const val snapshot = " 6860046"
65
- const val version = " 1.0.0-SNAPSHOT"
66
-
67
- const val compiler = " androidx.compose.compiler:compiler:$version "
64
+ const val snapshot = " "
65
+ const val version = " 1.0.0-alpha04"
68
66
69
67
const val runtime = " androidx.compose.runtime:runtime:$version "
70
68
const val foundation = " androidx.compose.foundation:foundation:${version} "
Original file line number Diff line number Diff line change @@ -66,13 +66,7 @@ android {
66
66
}
67
67
68
68
buildFeatures {
69
- // We turn off the Compose feature for now, due to using Compose SNAPSHOTs where the
70
- // Compose compiler artifact has changed artifact group/name.
71
- // Instead we add the compiler manually below in the dependencies {}. Also see
72
- // the root build.gradle for info on how to apply the plugin.
73
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
74
-
75
- // compose true
69
+ compose true
76
70
}
77
71
78
72
composeOptions {
@@ -86,10 +80,6 @@ dependencies {
86
80
implementation Libs.Kotlin . stdlib
87
81
implementation Libs.Coroutines . android
88
82
89
- // Temporary workaround (see above)
90
- // TODO: remove Compose.compiler once we upgrade to an AGP version which uses the new artifact details
91
- kotlinCompilerPlugin Libs.AndroidX.Compose . compiler
92
-
93
83
implementation Libs.AndroidX . coreKtx
94
84
implementation Libs.AndroidX . appcompat
95
85
implementation Libs.AndroidX.Navigation . fragment
Original file line number Diff line number Diff line change @@ -60,25 +60,8 @@ subprojects {
60
60
licenseHeaderFile rootProject. file(' spotless/copyright.kt' )
61
61
}
62
62
}
63
- // Create a configuration which allows us to intercept the JARs, and add them to
64
- // Kotlin Compiler freeCompilerArgs. This is needed because we can't currently use the
65
- // built-in `compose` feature in AGP, since it depends on the old Compose Compiler artifacts.
66
- // TODO: Remove this once AGP uses the new Compose Compiler artifact name
67
- def compilerPluginConfig = project. configurations. create(" kotlinCompilerPlugin" )
68
-
69
- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach { compile ->
70
-
71
- compile. dependsOn(compilerPluginConfig)
72
- compile. doFirst {
73
- if (! compilerPluginConfig. isEmpty()) {
74
- // Add the compiler plugin JARs using the -Xplugin flag
75
- compile. kotlinOptions. freeCompilerArgs + =
76
- " -Xplugin=${ compilerPluginConfig.files.first()} "
77
- // Need to turn on the IR compiler too
78
- compile. kotlinOptions. useIR = true
79
- }
80
- }
81
63
64
+ tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach {
82
65
kotlinOptions {
83
66
// Treat all Kotlin warnings as errors
84
67
allWarningsAsErrors = true
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ object Versions {
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha12 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha13 "
25
25
const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.0.9"
26
26
27
27
const val junit = " junit:junit:4.13"
@@ -47,10 +47,9 @@ object Libs {
47
47
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha01"
48
48
49
49
object Compose {
50
- const val snapshot = " 6860046 "
51
- const val version = " 1.0.0-SNAPSHOT "
50
+ const val snapshot = " "
51
+ const val version = " 1.0.0-alpha04 "
52
52
53
- const val compiler = " androidx.compose.compiler:compiler:$version "
54
53
const val core = " androidx.compose.ui:ui:$version "
55
54
const val foundation = " androidx.compose.foundation:foundation:$version "
56
55
const val layout = " androidx.compose.foundation:foundation-layout:$version "
Original file line number Diff line number Diff line change @@ -61,13 +61,7 @@ android {
61
61
}
62
62
63
63
buildFeatures {
64
- // We turn off the Compose feature for now, due to using Compose SNAPSHOTs where the
65
- // Compose compiler artifact has changed artifact group/name.
66
- // Instead we add the compiler manually below in the dependencies {}. Also see
67
- // the root build.gradle for info on how to apply the plugin.
68
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
69
- // compose true
70
-
64
+ compose true
71
65
// Disable unused AGP features
72
66
buildConfig false
73
67
aidl false
@@ -83,9 +77,6 @@ android {
83
77
}
84
78
85
79
dependencies {
86
- // Temporary workaround (see above)
87
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
88
- kotlinCompilerPlugin Libs.AndroidX.Compose . compiler
89
80
90
81
implementation Libs.Kotlin . stdlib
91
82
Original file line number Diff line number Diff line change @@ -49,31 +49,14 @@ subprojects {
49
49
maven { url ' https://oss.sonatype.org/content/repositories/snapshots' }
50
50
}
51
51
52
- // Create a configuration which allows us to intercept the JARs, and add them to
53
- // Kotlin Compiler freeCompilerArgs. This is needed because we can't currently use the
54
- // built-in `compose` feature in AGP, since it depends on the old Compose Compiler artifacts.
55
- // TODO: Remove this once AGP uses the new Compose Compiler artifact name
56
- def compilerPluginConfig = project. configurations. create(" kotlinCompilerPlugin" )
57
-
58
- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach { compile ->
52
+ tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach {
59
53
kotlinOptions {
60
54
jvmTarget = ' 1.8'
61
55
allWarningsAsErrors = true
62
56
freeCompilerArgs + = ' -Xallow-jvm-ir-dependencies'
63
57
// Opt-in to experimental compose APIs
64
58
freeCompilerArgs + = ' -Xopt-in=kotlin.RequiresOptIn'
65
59
}
66
-
67
- compile. dependsOn(compilerPluginConfig)
68
- compile. doFirst {
69
- if (! compilerPluginConfig. isEmpty()) {
70
- // Add the compiler plugin JARs using the -Xplugin flag
71
- compile. kotlinOptions. freeCompilerArgs + =
72
- " -Xplugin=${ compilerPluginConfig.files.first()} "
73
- // Need to turn on the IR compiler too
74
- compile. kotlinOptions. useIR = true
75
- }
76
- }
77
60
}
78
61
apply plugin : ' com.diffplug.spotless'
79
62
spotless {
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ object Versions {
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha12 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha13 "
25
25
const val junit = " junit:junit:4.13"
26
26
27
27
object Accompanist {
28
- private const val version = " 0.2.3.compose-6860046-SNAPSHOT "
28
+ private const val version = " 0.3.0 "
29
29
const val coil = " dev.chrisbanes.accompanist:accompanist-coil:$version "
30
30
}
31
31
@@ -47,10 +47,9 @@ object Libs {
47
47
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha02"
48
48
49
49
object Compose {
50
- const val snapshot = " 6860046 "
51
- const val version = " 1.0.0-SNAPSHOT "
50
+ const val snapshot = " "
51
+ const val version = " 1.0.0-alpha04 "
52
52
53
- const val compiler = " androidx.compose.compiler:compiler:$version "
54
53
const val runtime = " androidx.compose.runtime:runtime:$version "
55
54
const val foundation = " androidx.compose.foundation:foundation:${version} "
56
55
const val layout = " androidx.compose.foundation:foundation-layout:${version} "
Original file line number Diff line number Diff line change @@ -64,13 +64,7 @@ android {
64
64
}
65
65
66
66
buildFeatures {
67
- // We turn off the Compose feature for now, due to using Compose SNAPSHOTs where the
68
- // Compose compiler artifact has changed artifact group/name.
69
- // Instead we add the compiler manually below in the dependencies {}. Also see
70
- // the root build.gradle for info on how to apply the plugin.
71
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
72
-
73
- // compose true
67
+ compose true
74
68
}
75
69
76
70
composeOptions {
@@ -94,10 +88,6 @@ dependencies {
94
88
implementation Libs.AndroidX.Material . material
95
89
implementation Libs . material
96
90
97
- // Temporary workaround (see above)
98
- // TODO: remove Compose.compiler once we upgrade to an AGP version which uses the new artifact details
99
- kotlinCompilerPlugin Libs.AndroidX.Compose . compiler
100
-
101
91
implementation Libs.AndroidX.Compose . layout
102
92
implementation Libs.AndroidX.Compose . material
103
93
implementation Libs.AndroidX.Compose . materialIconsExtended
Original file line number Diff line number Diff line change @@ -57,25 +57,7 @@ subprojects {
57
57
}
58
58
}
59
59
60
- // Create a configuration which allows us to intercept the JARs, and add them to
61
- // Kotlin Compiler freeCompilerArgs. This is needed because we can't currently use the
62
- // built-in `compose` feature in AGP, since it depends on the old Compose Compiler artifacts.
63
- // TODO: Remove this once AGP uses the new Compose Compiler artifact name
64
- def compilerPluginConfig = project. configurations. create(" kotlinCompilerPlugin" )
65
-
66
- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach { compile ->
67
-
68
- compile. dependsOn(compilerPluginConfig)
69
- compile. doFirst {
70
- if (! compilerPluginConfig. isEmpty()) {
71
- // Add the compiler plugin JARs using the -Xplugin flag
72
- compile. kotlinOptions. freeCompilerArgs + =
73
- " -Xplugin=${ compilerPluginConfig.files.first()} "
74
- // Need to turn on the IR compiler too
75
- compile. kotlinOptions. useIR = true
76
- }
77
- }
78
-
60
+ tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach {
79
61
kotlinOptions {
80
62
freeCompilerArgs + = ' -Xopt-in=kotlin.RequiresOptIn'
81
63
freeCompilerArgs + = ' -Xallow-jvm-ir-dependencies'
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ object Versions {
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha12 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha13 "
25
25
const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.0.9"
26
26
27
27
const val junit = " junit:junit:4.13"
@@ -40,10 +40,9 @@ object Libs {
40
40
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha01"
41
41
42
42
object Compose {
43
- const val snapshot = " 6860046 "
44
- const val version = " 1.0.0-SNAPSHOT "
43
+ const val snapshot = " "
44
+ const val version = " 1.0.0-alpha04 "
45
45
46
- const val compiler = " androidx.compose.compiler:compiler:$version "
47
46
const val core = " androidx.compose.ui:ui:$version "
48
47
const val foundation = " androidx.compose.foundation:foundation:$version "
49
48
const val layout = " androidx.compose.foundation:foundation-layout:$version "
Original file line number Diff line number Diff line change @@ -61,13 +61,7 @@ android {
61
61
}
62
62
63
63
buildFeatures {
64
- // We turn off the Compose feature for now, due to using Compose SNAPSHOTs where the
65
- // Compose compiler artifact has changed artifact group/name.
66
- // Instead we add the compiler manually below in the dependencies {}. Also see
67
- // the root build.gradle for info on how to apply the plugin.
68
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
69
-
70
- // compose true
64
+ compose true
71
65
// Disable unused AGP features
72
66
buildConfig false
73
67
aidl false
@@ -83,10 +77,6 @@ android {
83
77
}
84
78
85
79
dependencies {
86
- // Temporary workaround (see above)
87
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
88
- kotlinCompilerPlugin Libs.AndroidX.Compose . compiler
89
-
90
80
implementation Libs.Kotlin . stdlib
91
81
92
82
implementation Libs.AndroidX . coreKtx
Original file line number Diff line number Diff line change @@ -46,31 +46,13 @@ subprojects {
46
46
maven { url ' https://oss.sonatype.org/content/repositories/snapshots' }
47
47
}
48
48
49
- // Create a configuration which allows us to intercept the JARs, and add them to
50
- // Kotlin Compiler freeCompilerArgs. This is needed because we can't currently use the
51
- // built-in `compose` feature in AGP, since it depends on the old Compose Compiler artifacts.
52
- // TODO: Remove this once AGP uses the new Compose Compiler artifact name
53
- def compilerPluginConfig = project. configurations. create(" kotlinCompilerPlugin" )
54
-
55
- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach { compile ->
49
+ tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach {
56
50
kotlinOptions {
57
51
jvmTarget = ' 1.8'
58
52
allWarningsAsErrors = true
59
53
// Opt-in to experimental compose APIs
60
54
freeCompilerArgs + = ' -Xopt-in=kotlin.RequiresOptIn'
61
55
freeCompilerArgs + = " -Xallow-jvm-ir-dependencies"
62
- freeCompilerArgs + = " -Xjvm-default=enable"
63
- }
64
-
65
- compile. dependsOn(compilerPluginConfig)
66
- compile. doFirst {
67
- if (! compilerPluginConfig. isEmpty()) {
68
- // Add the compiler plugin JARs using the -Xplugin flag
69
- compile. kotlinOptions. freeCompilerArgs + =
70
- " -Xplugin=${ compilerPluginConfig.files.first()} "
71
- // Need to turn on the IR compiler too
72
- compile. kotlinOptions. useIR = true
73
- }
74
56
}
75
57
}
76
58
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ object Versions {
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha12 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha13 "
25
25
const val junit = " junit:junit:4.13"
26
26
27
27
object Accompanist {
28
- private const val version = " 0.2.3.compose-6860046-SNAPSHOT "
28
+ private const val version = " 0.3.0 "
29
29
const val coil = " dev.chrisbanes.accompanist:accompanist-coil:$version "
30
30
}
31
31
@@ -47,10 +47,9 @@ object Libs {
47
47
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha02"
48
48
49
49
object Compose {
50
- const val snapshot = " 6860046 "
51
- const val version = " 1.0.0-SNAPSHOT "
50
+ const val snapshot = " "
51
+ const val version = " 1.0.0-alpha04 "
52
52
53
- const val compiler = " androidx.compose.compiler:compiler:$version "
54
53
const val runtime = " androidx.compose.runtime:runtime:$version "
55
54
const val foundation = " androidx.compose.foundation:foundation:$version "
56
55
const val layout = " androidx.compose.foundation:foundation-layout:$version "
Original file line number Diff line number Diff line change @@ -66,13 +66,7 @@ android {
66
66
}
67
67
68
68
buildFeatures {
69
- // We turn off the Compose feature for now, due to using Compose SNAPSHOTs where the
70
- // Compose compiler artifact has changed artifact group/name.
71
- // Instead we add the compiler manually below in the dependencies {}. Also see
72
- // the root build.gradle for info on how to apply the plugin.
73
- // TODO: remove this once we upgrade to an AGP version which uses the new artifact details
74
-
75
- // compose true
69
+ compose true
76
70
}
77
71
78
72
composeOptions {
@@ -86,10 +80,6 @@ dependencies {
86
80
implementation Libs.Kotlin . stdlib
87
81
implementation Libs.Coroutines . android
88
82
89
- // Temporary workaround (see above)
90
- // TODO: remove Compose.compiler once we upgrade to an AGP version which uses the new artifact details
91
- kotlinCompilerPlugin Libs.AndroidX.Compose . compiler
92
-
93
83
implementation Libs.AndroidX . coreKtx
94
84
implementation Libs.AndroidX . appcompat
95
85
implementation Libs.AndroidX.Navigation . fragment
Original file line number Diff line number Diff line change @@ -60,24 +60,7 @@ subprojects {
60
60
}
61
61
}
62
62
63
- // Create a configuration which allows us to intercept the JARs, and add them to
64
- // Kotlin Compiler freeCompilerArgs. This is needed because we can't currently use the
65
- // built-in `compose` feature in AGP, since it depends on the old Compose Compiler artifacts.
66
- // TODO: Remove this once AGP uses the new Compose Compiler artifact name
67
- def compilerPluginConfig = project. configurations. create(" kotlinCompilerPlugin" )
68
-
69
- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach { compile ->
70
-
71
- compile. dependsOn(compilerPluginConfig)
72
- compile. doFirst {
73
- if (! compilerPluginConfig. isEmpty()) {
74
- // Add the compiler plugin JARs using the -Xplugin flag
75
- compile. kotlinOptions. freeCompilerArgs + =
76
- " -Xplugin=${ compilerPluginConfig.files.first()} "
77
- // Need to turn on the IR compiler too
78
- compile. kotlinOptions. useIR = true
79
- }
80
- }
63
+ tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). configureEach {
81
64
kotlinOptions {
82
65
// Treat all Kotlin warnings as errors
83
66
allWarningsAsErrors = true
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ object Versions {
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha12 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha13 "
25
25
const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.0.9"
26
26
27
27
const val junit = " junit:junit:4.13"
@@ -47,10 +47,9 @@ object Libs {
47
47
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha02"
48
48
49
49
object Compose {
50
- const val snapshot = " 6860046 "
51
- const val version = " 1.0.0-SNAPSHOT "
50
+ const val snapshot = " "
51
+ const val version = " 1.0.0-alpha04 "
52
52
53
- const val compiler = " androidx.compose.compiler:compiler:$version "
54
53
const val core = " androidx.compose.ui:ui:$version "
55
54
const val foundation = " androidx.compose.foundation:foundation:$version "
56
55
const val layout = " androidx.compose.foundation:foundation-layout:$version "
You can’t perform that action at this time.
0 commit comments