Skip to content

Commit 3b6997c

Browse files
update compose to 1.3.0 and dependency cleanup
1 parent 5604a7e commit 3b6997c

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ dependencies {
7373
implementation "androidx.compose.material:material-icons-core:$compose_version"
7474
implementation "androidx.compose.material:material-icons-extended:$compose_version"
7575
// Integration with activities
76-
implementation 'androidx.activity:activity-compose:1.6.0'
76+
implementation 'androidx.activity:activity-compose:1.6.1'
7777
// Integration with ViewModels
7878
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1'
7979

8080
// Material Design 3 for Compose
81-
implementation "androidx.compose.material3:material3:1.0.0-rc01"
81+
implementation "androidx.compose.material3:material3:1.0.0"
8282

83-
def nav_compose_version = "2.5.2"
83+
def nav_compose_version = "2.5.3"
8484
implementation "androidx.navigation:navigation-compose:$nav_compose_version"
8585

8686
def accompanist_version = "0.25.0"

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
buildscript {
22
ext {
3-
compose_version = '1.3.0-rc01'
3+
compose_version = '1.3.0'
44
}
55
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
66
plugins {
7-
id 'com.android.application' version '7.3.0' apply false
8-
id 'com.android.library' version '7.3.0' apply false
7+
id 'com.android.application' version '7.3.1' apply false
8+
id 'com.android.library' version '7.3.1' apply false
99
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
1010
}
1111

cropper/build.gradle

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,13 @@ dependencies {
5050

5151
// Jetpack Compose
5252
implementation "androidx.compose.ui:ui:$compose_version"
53-
implementation "androidx.compose.ui:ui-tooling:$compose_version"
54-
implementation "androidx.compose.material:material:$compose_version"
5553
implementation "androidx.compose.runtime:runtime:$compose_version"
5654

55+
// Material Design 3 for Compose
56+
implementation "androidx.compose.material3:material3:1.0.0"
5757
// Material design icons
58-
implementation "androidx.compose.material:material-icons-core:$compose_version"
5958
implementation "androidx.compose.material:material-icons-extended:$compose_version"
6059

61-
// Material Design 3 for Compose
62-
implementation "androidx.compose.material3:material3:1.0.0-rc01"
63-
6460
testImplementation 'junit:junit:4.13.2'
6561
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
6662
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

0 commit comments

Comments
 (0)