Skip to content

Commit 42f3a91

Browse files
committedSep 17, 2020
Update all samples to alpha03.
Change-Id: Ibb9d24866949ff55ce2c0d66e7e9c99d44f472df
1 parent 117bebd commit 42f3a91

File tree

11 files changed

+28
-26
lines changed

11 files changed

+28
-26
lines changed
 

Diff for: ‎Crane/app/src/main/java/androidx/compose/samples/crane/calendar/Calendar.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ private fun Week(
132132
}
133133
for (day in week) {
134134
Day(
135-
day, onDayClicked,
135+
day,
136+
onDayClicked,
136137
Modifier.semantics {
137138
accessibilityLabel = "${month.name} ${day.value}"
138139
dayStatusProperty = day.status

Diff for: ‎Crane/buildSrc/src/main/java/com/example/crane/buildsrc/Dependencies.kt

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.example.crane.buildsrc
1818

1919
object Versions {
20-
const val ktLint = "0.37.2"
20+
const val ktLint = "0.38.1"
2121
}
2222

2323
object Libs {
@@ -26,7 +26,7 @@ object Libs {
2626
const val googleMaps = "com.google.android.libraries.maps:maps:3.1.0-beta"
2727

2828
object Accompanist {
29-
private const val version = "0.2.2.ui-6824694-SNAPSHOT"
29+
private const val version = "0.2.2"
3030
const val coil = "dev.chrisbanes.accompanist:accompanist-coil:$version"
3131
}
3232

@@ -38,11 +38,11 @@ object Libs {
3838
}
3939

4040
object AndroidX {
41-
const val appcompat = "androidx.appcompat:appcompat:1.3.0-alpha01"
41+
const val appcompat = "androidx.appcompat:appcompat:1.3.0-alpha02"
4242

4343
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"
4646

4747
const val runtime = "androidx.compose.runtime:runtime:$version"
4848
const val runtimeLivedata = "androidx.compose.runtime:runtime-livedata:$version"

Diff for: ‎JetNews/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ subprojects {
4646
targetExclude("$buildDir/**/*.kt")
4747
targetExclude('bin/**/*.kt')
4848

49-
ktlint("0.37.2")
49+
ktlint("0.38.1")
5050
licenseHeaderFile rootProject.file('spotless/copyright.kt')
5151
}
5252
}

Diff for: ‎Jetcaster/buildSrc/src/main/java/com/example/jetcaster/buildsrc/dependencies.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ object Libs {
6161
const val coreKtx = "androidx.core:core-ktx:1.5.0-alpha02"
6262

6363
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"
6666

6767
const val runtime = "androidx.compose.runtime:runtime:$version"
6868
const val foundation = "androidx.compose.foundation:foundation:${version}"

Diff for: ‎Jetchat/app/src/main/java/com/example/compose/jetchat/NavActivity.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ class NavActivity : AppCompatActivity() {
4646
// menu should be considered as top level destinations.
4747
appBarConfiguration = AppBarConfiguration(
4848
setOf(
49-
R.id.nav_home, R.id.nav_profile
49+
R.id.nav_home,
50+
R.id.nav_profile
5051
),
5152
drawerLayout
5253
)

Diff for: ‎Jetchat/buildSrc/src/main/java/com/example/compose/jetchat/buildsrc/dependencies.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.example.compose.jetchat.buildsrc
1818

1919
object Versions {
20-
const val ktlint = "0.37.0"
20+
const val ktlint = "0.38.1"
2121
}
2222

2323
object Libs {
@@ -47,8 +47,8 @@ object Libs {
4747
const val coreKtx = "androidx.core:core-ktx:1.5.0-alpha01"
4848

4949
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"
5252

5353
const val core = "androidx.compose.ui:ui:$version"
5454
const val foundation = "androidx.compose.foundation:foundation:$version"

Diff for: ‎Jetsnack/buildSrc/src/main/java/com/example/jetsnack/buildsrc/Dependencies.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ object Libs {
2525
const val junit = "junit:junit:4.13"
2626

2727
object Accompanist {
28-
private const val version = "0.2.2.ui-6824694-SNAPSHOT"
28+
private const val version = "0.2.2"
2929
const val coil = "dev.chrisbanes.accompanist:accompanist-coil:$version"
3030
}
3131

@@ -48,8 +48,8 @@ object Libs {
4848
const val coreKtx = "androidx.core:core-ktx:1.5.0-alpha02"
4949

5050
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"
5353

5454
const val runtime = "androidx.compose.runtime:runtime:$version"
5555
const val foundation = "androidx.compose.foundation:foundation:${version}"

Diff for: ‎Jetsurvey/buildSrc/src/main/java/com/example/compose/jetsurvey/buildsrc/dependencies.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
package com.example.compose.jetsurvey.buildsrc
1818

1919
object Versions {
20-
const val ktlint = "0.37.0"
20+
const val ktlint = "0.38.1"
2121
}
2222

2323
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"
2525
const val jdkDesugar = "com.android.tools:desugar_jdk_libs:1.0.9"
2626

2727
const val junit = "junit:junit:4.13"
@@ -40,8 +40,8 @@ object Libs {
4040
const val coreKtx = "androidx.core:core-ktx:1.5.0-alpha01"
4141

4242
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"
4545

4646
const val core = "androidx.compose.ui:ui:$version"
4747
const val foundation = "androidx.compose.foundation:foundation:$version"

Diff for: ‎Jetsurvey/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
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

Diff for: ‎Owl/buildSrc/src/main/java/com/example/owl/buildsrc/Dependencies.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ object Libs {
2525
const val junit = "junit:junit:4.13"
2626

2727
object Accompanist {
28-
private const val version = "0.2.2.ui-6824694-SNAPSHOT"
28+
private const val version = "0.2.2"
2929
const val coil = "dev.chrisbanes.accompanist:accompanist-coil:$version"
3030
}
3131

@@ -48,8 +48,8 @@ object Libs {
4848
const val coreKtx = "androidx.core:core-ktx:1.5.0-alpha02"
4949

5050
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"
5353

5454
const val runtime = "androidx.compose.runtime:runtime:$version"
5555
const val foundation = "androidx.compose.foundation:foundation:$version"

Diff for: ‎Rally/buildSrc/src/main/java/com/example/compose/rally/buildsrc/dependencies.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ object Libs {
4747
const val coreKtx = "androidx.core:core-ktx:1.5.0-alpha02"
4848

4949
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"
5252

5353
const val core = "androidx.compose.ui:ui:$version"
5454
const val foundation = "androidx.compose.foundation:foundation:$version"

0 commit comments

Comments
 (0)
Please sign in to comment.