Update to Compose 1.0.0 Beta 2 and Kotlin 1.4.31

This commit is contained in:
Patryk Michalik
2021-03-11 15:48:17 +01:00
parent 6211b6c90f
commit 14edc3a2be
+13 -14
View File
@@ -1,8 +1,7 @@
import org.gradle.api.tasks.wrapper.Wrapper.DistributionType
buildscript {
ext {
kotlin_version = '1.4.30'
kotlin_version = '1.4.31'
compose_version = '1.0.0-beta02'
}
repositories {
mavenCentral()
@@ -62,8 +61,8 @@ android {
}
composeOptions {
kotlinCompilerVersion "1.4.30"
kotlinCompilerExtensionVersion "1.0.0-beta01"
kotlinCompilerVersion "1.4.31"
kotlinCompilerExtensionVersion "1.0.0-beta02"
}
buildTypes {
@@ -236,17 +235,17 @@ dependencies {
implementation 'com.github.ChickenHook:RestrictionBypass:2.2'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.compose.ui:ui:1.0.0-beta01'
implementation 'androidx.compose.ui:ui-tooling:1.0.0-beta01'
implementation 'androidx.compose.foundation:foundation:1.0.0-beta01'
implementation 'androidx.compose.material:material:1.0.0-beta01'
implementation 'androidx.compose.material:material-icons-core:1.0.0-beta01'
implementation 'androidx.compose.material:material-icons-extended:1.0.0-beta01'
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.ui:ui-tooling:$compose_version"
implementation "androidx.compose.foundation:foundation:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.material:material-icons-core:$compose_version"
implementation "androidx.compose.material:material-icons-extended:$compose_version"
implementation 'androidx.activity:activity-compose:1.3.0-alpha03'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha02'
implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-beta01'
implementation 'androidx.compose.runtime:runtime-rxjava2:1.0.0-beta01'
implementation "androidx.compose.compiler:compiler:1.0.0-beta01"
implementation "androidx.compose.runtime:runtime-livedata:$compose_version"
implementation "androidx.compose.runtime:runtime-rxjava2:$compose_version"
implementation "androidx.compose.compiler:compiler:$compose_version"
implementation "androidx.navigation:navigation-compose:1.0.0-alpha08"
}