Compose migration from beta-07 to 1.0

This commit is contained in:
Thomas Andres Gomez 2021-08-02 15:48:48 +02:00
parent d86cbe75dd
commit a559a24fa4
4 changed files with 24 additions and 24 deletions

View file

@ -64,40 +64,40 @@ android {
}
composeOptions {
kotlinCompilerExtensionVersion '1.0.0-beta07'
kotlinCompilerExtensionVersion '1.0.0'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.5.0'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
// Android compose
implementation "androidx.compose.ui:ui:1.0.0-beta07"
implementation "androidx.compose.ui:ui:1.0.0"
// Tooling support (Previews, etc.)
implementation "androidx.compose.ui:ui-tooling:1.0.0-beta07"
implementation "androidx.compose.ui:ui-tooling:1.0.0"
// Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)
implementation "androidx.compose.foundation:foundation:1.0.0-beta07"
implementation "androidx.compose.foundation:foundation:1.0.0"
// Material Design
implementation "androidx.compose.material:material:1.0.0-beta07"
implementation "androidx.compose.material:material:1.0.0"
// Material design icons
implementation "androidx.compose.material:material-icons-core:1.0.0-beta07"
implementation "androidx.compose.material:material-icons-extended:1.0.0-beta07"
implementation "androidx.compose.material:material-icons-core:1.0.0"
implementation "androidx.compose.material:material-icons-extended:1.0.0"
// Integration with activities
implementation "androidx.activity:activity-compose:1.3.0-alpha08"
implementation "androidx.activity:activity-compose:1.3.0"
// Integration with ViewModels
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha05"
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07"
// Integration with observables
implementation "androidx.compose.runtime:runtime-livedata:1.0.0-beta07"
implementation "androidx.compose.runtime:runtime-livedata:1.0.0"
// ConstraintLayout
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-alpha07"
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-beta02"
// Google sign in.
implementation "com.google.android.gms:play-services-auth:19.0.0"
implementation "com.google.android.gms:play-services-auth:19.2.0"
// Paging
implementation "androidx.paging:paging-compose:1.0.0-alpha09"
implementation "androidx.paging:paging-compose:1.0.0-alpha12"
// RetroFit & Gson for webservice call
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
@ -114,7 +114,7 @@ dependencies {
// Test
testImplementation 'junit:junit:4.13.2'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.0.0-beta07"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.0.0"
}
static def generateVersionCode() {