Skip to content

Commit 6f025e1

Browse files
authored
update compose to rc02 and gradle to alpha03 (#101)
* update compose to rc02 and gradle to alpha03 * update accompanist version
1 parent 34b6270 commit 6f025e1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<div align="center">
1717
<a href = "https://developer.android.com/jetpack/androidx/versions/all-channel#december_16_2020">
18-
<img src = "https://img.shields.io/badge/Jetpack%20Compose-1.0.0%20rc01-brightgreen" />
18+
<img src = "https://img.shields.io/badge/Jetpack%20Compose-1.0.0%20rc02-brightgreen" />
1919
</a>
2020
<a href = "https://github.com/Gurupreet/ComposeCookBook/actions/workflows/android.yml">
2121
<img src = "https://github.com/Gurupreet/ComposeCookBook/actions/workflows/android.yml/badge.svg" />

app/src/test/java/com/guru/composecookbook/ui/home/HomeScreenItemsTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ internal class HomeScreenItemsTest {
1111

1212

1313
@Test
14-
fun `Home Screen Entry ListView name must contain its type `() {
14+
fun `Home Screen Entry ListView name must contain its type`() {
1515
val verticalListViewItem = HomeScreenItems.ListView()
1616
assertThat(verticalListViewItem.name)
1717
.contains(verticalListViewItem.type)
1818
}
1919

2020
@Test
21-
fun `Default Home Screen Entry ListView type should be Vertical `() {
21+
fun `Default Home Screen Entry ListView type should be Vertical`() {
2222
val verticalListViewItem = HomeScreenItems.ListView()
2323
assertThat(verticalListViewItem.type)
2424
.isEqualTo("Vertical")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath("com.android.tools.build:gradle:7.1.0-alpha02")
8+
classpath("com.android.tools.build:gradle:7.1.0-alpha03")
99
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10")
1010
}
1111
}

buildSrc/src/main/kotlin/com/guru/composecookbook/build/dependencies/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
package com.guru.composecookbook.build.dependencies
22

33
internal object Versions {
4-
const val compose = "1.0.0-rc01"
4+
const val compose = "1.0.0-rc02"
55
const val lifecycleViewModelCompose = "1.0.0-alpha08"
66
const val activityCompose = "1.3.0-rc01"
77
const val pagingCompose = "1.0.0-alpha09"
88
const val navCompose = "2.4.0-alpha02"
99
const val constraintLayoutCompose = "1.0.0-alpha08"
1010
const val lottieCompose = "1.0.0-beta03-1"
1111
const val fontAwesomeCompose = "1.0.0-beta02"
12-
const val accompanistCoil = "0.13.0"
12+
const val accompanistCoil = "0.14.0"
1313
const val kotlin = "1.5.10"
1414
const val coroutine = "1.4.2"
1515
const val androidLifecycleGrouped = "2.2.0"

0 commit comments

Comments
 (0)