Skip to content

Commit

Permalink
update compose to rc02 and gradle to alpha03 (Gurupreet#101)
Browse files Browse the repository at this point in the history
* update compose to rc02 and gradle to alpha03

* update accompanist version
  • Loading branch information
wiryadev authored Jul 15, 2021
1 parent 34b6270 commit 6f025e1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<div align="center">
<a href = "https://developer.android.com/jetpack/androidx/versions/all-channel#december_16_2020">
<img src = "https://img.shields.io/badge/Jetpack%20Compose-1.0.0%20rc01-brightgreen" />
<img src = "https://img.shields.io/badge/Jetpack%20Compose-1.0.0%20rc02-brightgreen" />
</a>
<a href = "https://github.com/Gurupreet/ComposeCookBook/actions/workflows/android.yml">
<img src = "https://github.com/Gurupreet/ComposeCookBook/actions/workflows/android.yml/badge.svg" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ internal class HomeScreenItemsTest {


@Test
fun `Home Screen Entry ListView name must contain its type `() {
fun `Home Screen Entry ListView name must contain its type`() {
val verticalListViewItem = HomeScreenItems.ListView()
assertThat(verticalListViewItem.name)
.contains(verticalListViewItem.type)
}

@Test
fun `Default Home Screen Entry ListView type should be Vertical `() {
fun `Default Home Screen Entry ListView type should be Vertical`() {
val verticalListViewItem = HomeScreenItems.ListView()
assertThat(verticalListViewItem.type)
.isEqualTo("Vertical")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.0-alpha02")
classpath("com.android.tools.build:gradle:7.1.0-alpha03")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10")
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package com.guru.composecookbook.build.dependencies

internal object Versions {
const val compose = "1.0.0-rc01"
const val compose = "1.0.0-rc02"
const val lifecycleViewModelCompose = "1.0.0-alpha08"
const val activityCompose = "1.3.0-rc01"
const val pagingCompose = "1.0.0-alpha09"
const val navCompose = "2.4.0-alpha02"
const val constraintLayoutCompose = "1.0.0-alpha08"
const val lottieCompose = "1.0.0-beta03-1"
const val fontAwesomeCompose = "1.0.0-beta02"
const val accompanistCoil = "0.13.0"
const val accompanistCoil = "0.14.0"
const val kotlin = "1.5.10"
const val coroutine = "1.4.2"
const val androidLifecycleGrouped = "2.2.0"
Expand Down

0 comments on commit 6f025e1

Please sign in to comment.