File tree 11 files changed +28
-26
lines changed
app/src/main/java/androidx/compose/samples/crane/calendar
buildSrc/src/main/java/com/example/crane/buildsrc
Jetcaster/buildSrc/src/main/java/com/example/jetcaster/buildsrc
app/src/main/java/com/example/compose/jetchat
buildSrc/src/main/java/com/example/compose/jetchat/buildsrc
Jetsnack/buildSrc/src/main/java/com/example/jetsnack/buildsrc
buildSrc/src/main/java/com/example/compose/jetsurvey/buildsrc
Owl/buildSrc/src/main/java/com/example/owl/buildsrc
Rally/buildSrc/src/main/java/com/example/compose/rally/buildsrc
11 files changed +28
-26
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,8 @@ private fun Week(
132
132
}
133
133
for (day in week) {
134
134
Day (
135
- day, onDayClicked,
135
+ day,
136
+ onDayClicked,
136
137
Modifier .semantics {
137
138
accessibilityLabel = " ${month.name} ${day.value} "
138
139
dayStatusProperty = day.status
Original file line number Diff line number Diff line change 17
17
package com.example.crane.buildsrc
18
18
19
19
object Versions {
20
- const val ktLint = " 0.37.2 "
20
+ const val ktLint = " 0.38.1 "
21
21
}
22
22
23
23
object Libs {
@@ -26,7 +26,7 @@ object Libs {
26
26
const val googleMaps = " com.google.android.libraries.maps:maps:3.1.0-beta"
27
27
28
28
object Accompanist {
29
- private const val version = " 0.2.2.ui-6824694-SNAPSHOT "
29
+ private const val version = " 0.2.2"
30
30
const val coil = " dev.chrisbanes.accompanist:accompanist-coil:$version "
31
31
}
32
32
@@ -38,11 +38,11 @@ object Libs {
38
38
}
39
39
40
40
object AndroidX {
41
- const val appcompat = " androidx.appcompat:appcompat:1.3.0-alpha01 "
41
+ const val appcompat = " androidx.appcompat:appcompat:1.3.0-alpha02 "
42
42
43
43
object Compose {
44
- const val snapshot = " 6824694 "
45
- const val version = " 1.0.0-SNAPSHOT "
44
+ const val snapshot = " "
45
+ const val version = " 1.0.0-alpha03 "
46
46
47
47
const val runtime = " androidx.compose.runtime:runtime:$version "
48
48
const val runtimeLivedata = " androidx.compose.runtime:runtime-livedata:$version "
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ subprojects {
46
46
targetExclude(" $buildDir /**/*.kt" )
47
47
targetExclude(' bin/**/*.kt' )
48
48
49
- ktlint(" 0.37.2 " )
49
+ ktlint(" 0.38.1 " )
50
50
licenseHeaderFile rootProject. file(' spotless/copyright.kt' )
51
51
}
52
52
}
Original file line number Diff line number Diff line change @@ -61,8 +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 = " 6824694 "
65
- const val version = " 1.0.0-SNAPSHOT "
64
+ const val snapshot = " "
65
+ const val version = " 1.0.0-alpha03 "
66
66
67
67
const val runtime = " androidx.compose.runtime:runtime:$version "
68
68
const val foundation = " androidx.compose.foundation:foundation:${version} "
Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ class NavActivity : AppCompatActivity() {
46
46
// menu should be considered as top level destinations.
47
47
appBarConfiguration = AppBarConfiguration (
48
48
setOf (
49
- R .id.nav_home, R .id.nav_profile
49
+ R .id.nav_home,
50
+ R .id.nav_profile
50
51
),
51
52
drawerLayout
52
53
)
Original file line number Diff line number Diff line change 17
17
package com.example.compose.jetchat.buildsrc
18
18
19
19
object Versions {
20
- const val ktlint = " 0.37.0 "
20
+ const val ktlint = " 0.38.1 "
21
21
}
22
22
23
23
object Libs {
@@ -47,8 +47,8 @@ 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 = " 6824694 "
51
- const val version = " 1.0.0-SNAPSHOT "
50
+ const val snapshot = " "
51
+ const val version = " 1.0.0-alpha03 "
52
52
53
53
const val core = " androidx.compose.ui:ui:$version "
54
54
const val foundation = " androidx.compose.foundation:foundation:$version "
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ object Libs {
25
25
const val junit = " junit:junit:4.13"
26
26
27
27
object Accompanist {
28
- private const val version = " 0.2.2.ui-6824694-SNAPSHOT "
28
+ private const val version = " 0.2.2"
29
29
const val coil = " dev.chrisbanes.accompanist:accompanist-coil:$version "
30
30
}
31
31
@@ -48,8 +48,8 @@ object Libs {
48
48
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha02"
49
49
50
50
object Compose {
51
- const val snapshot = " 6824694 "
52
- const val version = " 1.0.0-SNAPSHOT "
51
+ const val snapshot = " "
52
+ const val version = " 1.0.0-alpha03 "
53
53
54
54
const val runtime = " androidx.compose.runtime:runtime:$version "
55
55
const val foundation = " androidx.compose.foundation:foundation:${version} "
Original file line number Diff line number Diff line change 17
17
package com.example.compose.jetsurvey.buildsrc
18
18
19
19
object Versions {
20
- const val ktlint = " 0.37.0 "
20
+ const val ktlint = " 0.38.1 "
21
21
}
22
22
23
23
object Libs {
24
- const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha09 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:4.2.0-alpha10 "
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,8 +40,8 @@ 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 = " 6824694 "
44
- const val version = " 1.0.0-SNAPSHOT "
43
+ const val snapshot = " "
44
+ const val version = " 1.0.0-alpha03 "
45
45
46
46
const val core = " androidx.compose.ui:ui:$version "
47
47
const val foundation = " androidx.compose.foundation:foundation:$version "
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.6-bin.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.6.1 -bin.zip
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ object Libs {
25
25
const val junit = " junit:junit:4.13"
26
26
27
27
object Accompanist {
28
- private const val version = " 0.2.2.ui-6824694-SNAPSHOT "
28
+ private const val version = " 0.2.2"
29
29
const val coil = " dev.chrisbanes.accompanist:accompanist-coil:$version "
30
30
}
31
31
@@ -48,8 +48,8 @@ object Libs {
48
48
const val coreKtx = " androidx.core:core-ktx:1.5.0-alpha02"
49
49
50
50
object Compose {
51
- const val snapshot = " 6824694 "
52
- const val version = " 1.0.0-SNAPSHOT "
51
+ const val snapshot = " "
52
+ const val version = " 1.0.0-alpha03 "
53
53
54
54
const val runtime = " androidx.compose.runtime:runtime:$version "
55
55
const val foundation = " androidx.compose.foundation:foundation:$version "
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ 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 = " 6824694 "
51
- const val version = " 1.0.0-SNAPSHOT "
50
+ const val snapshot = " "
51
+ const val version = " 1.0.0-alpha03 "
52
52
53
53
const val core = " androidx.compose.ui:ui:$version "
54
54
const val foundation = " androidx.compose.foundation:foundation:$version "
You can’t perform that action at this time.
0 commit comments