@@ -3,13 +3,14 @@ plugins {
3
3
id(" org.jetbrains.kotlin.android" )
4
4
}
5
5
6
+ @Suppress(" UnstableApiUsage" )
6
7
android {
7
- compileSdk = 32
8
+ compileSdk = 33
8
9
9
10
defaultConfig {
10
11
applicationId = " com.quickbird.android_example"
11
12
minSdk = 21
12
- targetSdk = 32
13
+ targetSdk = 33
13
14
versionCode = 1
14
15
versionName = " 1.0"
15
16
@@ -38,30 +39,31 @@ android {
38
39
compose = true
39
40
}
40
41
composeOptions {
41
- kotlinCompilerExtensionVersion = " 1.2.0 "
42
+ kotlinCompilerExtensionVersion = " 1.4.4 "
42
43
}
44
+ namespace = " com.quickbird.android_example"
43
45
}
44
46
45
47
dependencies {
46
- implementation(" androidx.core:core-ktx:1.8 .0" )
48
+ implementation(" androidx.core:core-ktx:1.9 .0" )
47
49
48
- implementation(" androidx.activity:activity-compose:1.5 .0" )
50
+ implementation(" androidx.activity:activity-compose:1.7 .0" )
49
51
50
- implementation(" androidx.compose.ui:ui:1.2.0-rc03 " )
51
- implementation(" androidx.compose.ui:ui-tooling-preview:1.2.0-rc03 " )
52
- implementation(" androidx.compose.ui:ui-tooling:1.2.0-rc03 " )
53
- implementation(" androidx.compose.material:material:1.2.0-rc03 " )
54
- implementation(" androidx.compose.material:material-icons-extended:1.2.0-rc03 " )
55
- implementation(" androidx.compose.foundation:foundation:1.2.0-rc03 " )
52
+ implementation(" androidx.compose.ui:ui:1.4.0 " )
53
+ implementation(" androidx.compose.ui:ui-tooling-preview:1.4.0 " )
54
+ implementation(" androidx.compose.ui:ui-tooling:1.4.0 " )
55
+ implementation(" androidx.compose.material:material:1.4.0 " )
56
+ implementation(" androidx.compose.material:material-icons-extended:1.4.0 " )
57
+ implementation(" androidx.compose.foundation:foundation:1.4.0 " )
56
58
57
- implementation(" androidx.navigation:navigation-compose:2.5.0 " )
59
+ implementation(" androidx.navigation:navigation-compose:2.5.3 " )
58
60
implementation(" androidx.constraintlayout:constraintlayout-compose:1.0.1" )
59
- implementation(" com.google.android.material:material:1.7.0-alpha02 " )
60
- implementation(" androidx.core:core-splashscreen:1.0.0-rc01 " )
61
+ implementation(" com.google.android.material:material:1.8.0 " )
62
+ implementation(" androidx.core:core-splashscreen:1.0.0" )
61
63
62
64
testImplementation(project(" :snapshot" ))
63
65
testImplementation(" junit:junit:4.13.2" )
64
66
65
67
androidTestImplementation(project(" :snapshot" ))
66
- androidTestImplementation(" androidx.compose.ui:ui-test-junit4:1.2.0-rc01 " )
68
+ androidTestImplementation(" androidx.compose.ui:ui-test-junit4:1.4.0 " )
67
69
}
0 commit comments