File tree Expand file tree Collapse file tree 16 files changed +59
-59
lines changed
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 Expand file tree Collapse file tree 16 files changed +59
-59
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Studies built with [Jetpack Compose](https://developer.android.com/jetpack/compo
5
5
The goal of the sample is to showcase Material components, draggable UI elements, Android Views
6
6
inside Compose, and UI state handling.
7
7
8
- To try out this sample app, you need to use the latest version of [ Android Studio Arctic Fox] ( https://developer.android.com/studio/preview ) .
8
+ To try out this sample app, you need to use [ Android Studio Arctic Fox] ( https://developer.android.com/studio ) .
9
9
You can clone this repository or import the
10
10
project from Android Studio following the steps
11
11
[ here] ( https://developer.android.com/jetpack/compose/setup#sample ) .
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:7.0.0-rc01 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:7.0.0"
25
25
const val ktLint = " com.pinterest:ktlint:${Versions .ktLint} "
26
26
27
27
object GoogleMaps {
@@ -34,7 +34,7 @@ object Libs {
34
34
}
35
35
36
36
object Accompanist {
37
- const val version = " 0.14 .0"
37
+ const val version = " 0.15 .0"
38
38
const val insets = " com.google.accompanist:accompanist-insets:$version "
39
39
}
40
40
@@ -45,22 +45,22 @@ object Libs {
45
45
const val extensions = " org.jetbrains.kotlin:kotlin-android-extensions:$version "
46
46
47
47
object Coroutines {
48
- private const val version = " 1.4.2 "
48
+ private const val version = " 1.5.0 "
49
49
const val android = " org.jetbrains.kotlinx:kotlinx-coroutines-android:$version "
50
50
const val test = " org.jetbrains.kotlinx:kotlinx-coroutines-test:$version "
51
51
}
52
52
}
53
53
54
54
object AndroidX {
55
55
object Activity {
56
- const val activityCompose = " androidx.activity:activity-compose:1.3.0-rc01 "
56
+ const val activityCompose = " androidx.activity:activity-compose:1.3.0"
57
57
}
58
58
59
59
const val appcompat = " androidx.appcompat:appcompat:1.3.0"
60
60
61
61
object Compose {
62
62
const val snapshot = " "
63
- const val version = " 1.0.0-rc02 "
63
+ const val version = " 1.0.0"
64
64
65
65
const val runtime = " androidx.compose.runtime:runtime:$version "
66
66
const val runtimeLivedata = " androidx.compose.runtime:runtime-livedata:$version "
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ Jetnews is a sample news reading app, built with
3
3
[ Jetpack Compose] ( https://developer.android.com/jetpack/compose ) . The goal of the sample is to
4
4
showcase the current UI capabilities of Compose.
5
5
6
- To try out this sample app, you need to use the latest version of
7
- [ Android Studio Arctic Fox] ( https://developer.android.com/studio/preview ) .
6
+ To try out this sample app, you need to use
7
+ [ Android Studio Arctic Fox] ( https://developer.android.com/studio ) .
8
8
You can clone this repository or import the
9
9
project from Android Studio following the steps
10
10
[ here] ( https://developer.android.com/jetpack/compose/setup#sample ) .
Original file line number Diff line number Diff line change @@ -108,14 +108,14 @@ dependencies {
108
108
109
109
implementation ' androidx.appcompat:appcompat:1.3.0'
110
110
implementation ' androidx.activity:activity-ktx:1.2.3'
111
- implementation ' androidx.core:core-ktx:1.6.0-rc01 '
112
- implementation " androidx.activity:activity-compose:1.3.0-rc01 "
111
+ implementation ' androidx.core:core-ktx:1.6.0'
112
+ implementation " androidx.activity:activity-compose:1.3.0"
113
113
114
114
implementation " androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1"
115
115
implementation " androidx.lifecycle:lifecycle-livedata-ktx:2.3.1"
116
116
implementation " androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07"
117
117
118
- implementation ' androidx.navigation:navigation-compose:2.4.0-alpha04 '
118
+ implementation ' androidx.navigation:navigation-compose:2.4.0-alpha05 '
119
119
120
120
androidTestImplementation ' androidx.test:rules:1.3.0'
121
121
androidTestImplementation ' androidx.test:runner:1.3.0'
Original file line number Diff line number Diff line change 16
16
17
17
buildscript {
18
18
ext. kotlin_version = ' 1.5.10'
19
- ext. compose_version = ' 1.0.0-rc02 '
20
- ext. coroutines_version = ' 1.4.2 '
21
- ext. accompanist_version = ' 0.14 .0'
19
+ ext. compose_version = ' 1.0.0'
20
+ ext. coroutines_version = ' 1.5.0 '
21
+ ext. accompanist_version = ' 0.15 .0'
22
22
23
23
repositories {
24
24
google()
25
25
mavenCentral()
26
26
}
27
27
28
28
dependencies {
29
- classpath ' com.android.tools.build:gradle:7.0.0-rc01 '
29
+ classpath ' com.android.tools.build:gradle:7.0.0'
30
30
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
31
31
}
32
32
}
Original file line number Diff line number Diff line change 5
5
Jetcaster is a sample podcast app, built with [ Jetpack Compose] [ compose ] . The goal of the sample is to
6
6
showcase dynamic theming and full featured architecture.
7
7
8
- To try out this sample app, you need to use the latest version of
9
- [ Android Studio Arctic Fox] ( https://developer.android.com/studio/preview ) .
8
+ To try out this sample app, you need to use
9
+ [ Android Studio Arctic Fox] ( https://developer.android.com/studio ) .
10
10
You can clone this repository or import the
11
11
project from Android Studio following the steps
12
12
[ here] ( https://developer.android.com/jetpack/compose/setup#sample ) .
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:7.0.0-rc01 "
25
- const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.0.9 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:7.0.0"
25
+ const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.1.5 "
26
26
27
27
object Accompanist {
28
- const val version = " 0.14 .0"
28
+ const val version = " 0.15 .0"
29
29
const val insets = " com.google.accompanist:accompanist-insets:$version "
30
30
const val pager = " com.google.accompanist:accompanist-pager:$version "
31
31
}
@@ -59,19 +59,19 @@ object Libs {
59
59
const val appcompat = " androidx.appcompat:appcompat:1.2.0"
60
60
const val palette = " androidx.palette:palette:1.0.0"
61
61
62
- const val coreKtx = " androidx.core:core-ktx:1.6.0-rc01 "
62
+ const val coreKtx = " androidx.core:core-ktx:1.6.0"
63
63
64
64
object Activity {
65
- const val activityCompose = " androidx.activity:activity-compose:1.3.0-rc01 "
65
+ const val activityCompose = " androidx.activity:activity-compose:1.3.0"
66
66
}
67
67
68
68
object Constraint {
69
- const val constraintLayoutCompose = " androidx.constraintlayout:constraintlayout-compose:1.0.0-alpha08 "
69
+ const val constraintLayoutCompose = " androidx.constraintlayout:constraintlayout-compose:1.0.0-beta01 "
70
70
}
71
71
72
72
object Compose {
73
73
const val snapshot = " "
74
- const val version = " 1.0.0-rc02 "
74
+ const val version = " 1.0.0"
75
75
76
76
@get:JvmStatic
77
77
val snapshotUrl: String
Original file line number Diff line number Diff line change 4
4
5
5
Jetchat is a sample chat app built with [ Jetpack Compose] [ compose ] .
6
6
7
- To try out this sample app, you need to use the latest version of
8
- [ Android Studio Arctic Fox] ( https://developer.android.com/studio/preview )
7
+ To try out this sample app, you need to use
8
+ [ Android Studio Arctic Fox] ( https://developer.android.com/studio )
9
9
You can clone this repository or import the
10
10
project from Android Studio following the steps
11
11
[ here] ( https://developer.android.com/jetpack/compose/setup#sample ) .
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:7.0.0-rc01 "
25
- const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.0.9 "
24
+ const val androidGradlePlugin = " com.android.tools.build:gradle:7.0.0"
25
+ const val jdkDesugar = " com.android.tools:desugar_jdk_libs:1.1.5 "
26
26
27
27
const val junit = " junit:junit:4.13"
28
28
29
29
const val material = " com.google.android.material:material:1.3.0"
30
30
31
31
object Accompanist {
32
- const val version = " 0.14 .0"
32
+ const val version = " 0.15 .0"
33
33
const val insets = " com.google.accompanist:accompanist-insets:$version "
34
34
}
35
35
@@ -49,15 +49,15 @@ object Libs {
49
49
50
50
object AndroidX {
51
51
const val appcompat = " androidx.appcompat:appcompat:1.3.0"
52
- const val coreKtx = " androidx.core:core-ktx:1.6.0-rc01 "
52
+ const val coreKtx = " androidx.core:core-ktx:1.6.0"
53
53
54
54
object Activity {
55
- const val activityCompose = " androidx.activity:activity-compose:1.3.0-rc01 "
55
+ const val activityCompose = " androidx.activity:activity-compose:1.3.0"
56
56
}
57
57
58
58
object Compose {
59
59
const val snapshot = " "
60
- const val version = " 1.0.0-rc02 "
60
+ const val version = " 1.0.0"
61
61
62
62
const val foundation = " androidx.compose.foundation:foundation:$version "
63
63
const val layout = " androidx.compose.foundation:foundation-layout:$version "
Original file line number Diff line number Diff line change 2
2
3
3
Jetsnack is a sample snack ordering app built with [ Jetpack Compose] [ compose ] .
4
4
5
- To try out this sample app, you need to use the latest version of
6
- [ Android Studio Arctic Fox] ( https://developer.android.com/studio/preview ) .
5
+ To try out this sample app, you need to use
6
+ [ Android Studio Arctic Fox] ( https://developer.android.com/studio ) .
7
7
You can clone this repository or import the
8
8
project from Android Studio following the steps
9
9
[ here] ( https://developer.android.com/jetpack/compose/setup#sample ) .
You canβt perform that action at this time.
0 commit comments