diff --git a/build.gradle b/build.gradle index bf85953f0c..47bed31bbe 100644 --- a/build.gradle +++ b/build.gradle @@ -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" }