Skip to content

Commit 18fb39c

Browse files
authored
compat to material3 1.1.0 (#9)
* update kotlin 1.8.21 & compose compiler 1.4.7 * update dependencies
1 parent c06d53b commit 18fb39c

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

ComposePrefs3/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ android {
3232
compose true
3333
}
3434
composeOptions {
35-
kotlinCompilerExtensionVersion "1.3.2"
35+
kotlinCompilerExtensionVersion "1.4.7"
3636
}
3737
namespace 'com.jamal.composeprefs3'
3838
}
3939

4040
dependencies {
41-
implementation "androidx.compose.ui:ui:1.3.0"
42-
implementation "androidx.compose.material3:material3:1.0.0"
43-
implementation "androidx.compose.material3:material3-window-size-class:1.0.0"
41+
implementation "androidx.compose.ui:ui:1.4.3"
42+
implementation "androidx.compose.material3:material3:1.1.0"
43+
implementation "androidx.compose.material3:material3-window-size-class:1.1.0"
4444
implementation "androidx.datastore:datastore-preferences:1.0.0"
4545
}
4646

app/build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
compose true
3737
}
3838
composeOptions {
39-
kotlinCompilerExtensionVersion = "1.3.2"
39+
kotlinCompilerExtensionVersion = "1.4.7"
4040
}
4141
packagingOptions {
4242
resources {
@@ -48,19 +48,19 @@ android {
4848

4949
dependencies {
5050

51-
implementation 'androidx.core:core-ktx:1.9.0'
52-
implementation 'com.google.android.material:material:1.7.0'
53-
implementation "androidx.compose.ui:ui:1.3.0"
54-
implementation "androidx.compose.material3:material3:1.0.0"
55-
implementation "androidx.compose.material3:material3-window-size-class:1.0.0"
56-
implementation "androidx.compose.ui:ui-tooling-preview:1.3.0"
57-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
58-
implementation 'androidx.activity:activity-compose:1.6.1'
59-
testImplementation 'junit:junit:4.+'
60-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
61-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
62-
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.3.0"
63-
debugImplementation "androidx.compose.ui:ui-tooling:1.3.0"
51+
implementation 'androidx.core:core-ktx:1.10.1'
52+
implementation 'com.google.android.material:material:1.9.0'
53+
implementation "androidx.compose.ui:ui:1.4.3"
54+
implementation "androidx.compose.material3:material3:1.1.0"
55+
implementation "androidx.compose.material3:material3-window-size-class:1.1.0"
56+
implementation "androidx.compose.ui:ui-tooling-preview:1.4.3"
57+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
58+
implementation 'androidx.activity:activity-compose:1.7.2'
59+
testImplementation 'junit:junit:4.13.2'
60+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
61+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
62+
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.4.3"
63+
debugImplementation "androidx.compose.ui:ui-tooling:1.4.3"
6464

6565
// ComposePrefs library
6666
implementation project(':ComposePrefs3')

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:7.3.1'
10-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20"
10+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21"
1111

1212
// NOTE: Do not place your application dependencies here; they belong
1313
// in the individual module build.gradle files

0 commit comments

Comments
 (0)