Skip to content

Commit

Permalink
Upgraded Compose to 1.0.3 (airbnb#1913)
Browse files Browse the repository at this point in the history
  • Loading branch information
gpeal authored Oct 3, 2021
1 parent c3dd693 commit ca98cf2
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import org.ajoberstar.grgit.Grgit

buildscript {
ext {
coroutinesVersion = '1.5.1'
coroutinesVersion = '1.5.2'
coreVersion = '1.6.0'
appcompatVersion = '1.3.1'
activityVersion = '1.3.1'
lifecycleVersion = '2.3.1'
composeVersion = '1.0.2'
kotlinVersion = '1.5.21'
composeVersion = '1.0.3'
kotlinVersion = '1.5.30'
daggerVersion = '2.38.1'
awsVersion = '2.8.3'
mockitoVersion = '3.12.4'
Expand Down
2 changes: 1 addition & 1 deletion issue-repro-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
compileSdk 30
compileSdk 31
defaultConfig {
applicationId "com.airbnb.lottie.issues.compose"
minSdk 21
Expand Down
2 changes: 1 addition & 1 deletion issue-repro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

android {
compileSdk 30
compileSdk 31
defaultConfig {
applicationId "com.airbnb.lottie.issues"
minSdk 16
Expand Down
2 changes: 1 addition & 1 deletion lottie-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

android {
compileSdk 30
compileSdk 31
defaultConfig {
minSdk 21
targetSdk 30
Expand Down
2 changes: 1 addition & 1 deletion lottie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

android {
resourcePrefix 'lottie_'
compileSdk 30
compileSdk 31
defaultConfig {
minSdk 16
targetSdk 30
Expand Down
6 changes: 3 additions & 3 deletions sample-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

android {
compileSdk 30
compileSdk 31
defaultConfig {
applicationId "com.airbnb.lottie.sample.compose"
minSdk 21
Expand Down Expand Up @@ -50,13 +50,13 @@ dependencies {
implementation project(':lottie-compose')
implementation "androidx.core:core-ktx:$coreVersion"
implementation "androidx.activity:activity-compose:$activityVersion"
implementation 'androidx.appcompat:appcompat:1.4.0-alpha03'
implementation 'androidx.appcompat:appcompat:1.4.0-beta01'
implementation "com.google.android.material:material:$materialVersion"
implementation "androidx.compose.ui:ui:$composeVersion"
implementation "androidx.compose.material:material:$composeVersion"
implementation "androidx.compose.material:material-icons-extended:$composeVersion"
implementation "androidx.compose.ui:ui-tooling:$composeVersion"
implementation "androidx.navigation:navigation-compose:2.4.0-alpha04"
implementation "androidx.navigation:navigation-compose:2.4.0-alpha10"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion"

implementation "androidx.navigation:navigation-ui-ktx:2.3.5"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.airbnb.lottie.sample.compose

import android.util.Base64
import androidx.navigation.NamedNavArgument
import androidx.navigation.NavController
import androidx.navigation.compose.NamedNavArgument
import androidx.navigation.compose.navArgument
import androidx.navigation.navArgument

fun NavController.navigate(route: Route) = navigate(route.route)

Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

android {
compileSdk 30
compileSdk 31
defaultConfig {
applicationId "com.airbnb.lottie"
minSdk 16
Expand Down

0 comments on commit ca98cf2

Please sign in to comment.