Skip to content

Commit

Permalink
bump compose version
Browse files Browse the repository at this point in the history
  • Loading branch information
re-ovo committed Sep 12, 2022
1 parent 1cadb83 commit a816ab2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ plugins {

android {
namespace 'me.rerere.composesetting'
compileSdk 32
compileSdk 33

defaultConfig {
applicationId "me.rerere.composesetting"
minSdk 21
targetSdk 32
targetSdk 33
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -52,9 +52,9 @@ dependencies {
// MMKV
implementation 'com.tencent:mmkv:1.2.13'

implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0'
implementation 'androidx.activity:activity-compose:1.5.0'
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.5.1'
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
buildscript {
ext {
compose_version = '1.3.0-alpha01'
compiler_version = '1.2.0'
md3_version = '1.0.0-alpha14'
compose_version = '1.3.0-beta02'
compiler_version = '1.3.1'
md3_version = '1.0.0-beta02'
}
}

plugins {
id 'com.android.application' version '7.3.0-beta05' apply false
id 'com.android.library' version '7.3.0-beta05' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'com.android.application' version '7.3.0-rc01' apply false
id 'com.android.library' version '7.3.0-rc01' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ fun SettingStringPickerItem(
)
}

@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun SettingStringInputDialogItem(
modifier: Modifier = Modifier,
Expand Down

0 comments on commit a816ab2

Please sign in to comment.