1
1
plugins {
2
2
id ' com.android.application'
3
3
id ' kotlin-android'
4
+ id(" org.jetbrains.kotlin.plugin.compose" ) version " 2.1.20" // this version matches your Kotlin version
4
5
}
5
6
6
7
android {
7
- compileSdk 32
8
+ compileSdk 36
8
9
9
10
defaultConfig {
10
11
applicationId " com.yogeshpaliyal.composeotpview"
11
12
minSdk 21
12
- targetSdk 32
13
+ targetSdk 36
13
14
versionCode 1
14
15
versionName " 1.0"
15
16
@@ -31,7 +32,6 @@ android {
31
32
}
32
33
kotlinOptions {
33
34
jvmTarget = ' 1.8'
34
- useIR = true
35
35
}
36
36
buildFeatures {
37
37
compose true
@@ -45,23 +45,25 @@ android {
45
45
excludes + = ' /META-INF/{AL2.0,LGPL2.1}'
46
46
}
47
47
}
48
+ namespace ' com.yogeshpaliyal.speld'
48
49
}
49
50
50
51
dependencies {
51
52
52
53
implementation project(' :speld' )
53
54
54
- implementation ' androidx.core:core-ktx:1.7 .0'
55
- implementation ' androidx.appcompat:appcompat:1.4.1 '
56
- implementation ' com.google.android.material:material:1.5 .0'
55
+ implementation ' androidx.core:core-ktx:1.16 .0'
56
+ implementation ' androidx.appcompat:appcompat:1.7.0 '
57
+ implementation ' com.google.android.material:material:1.12 .0'
57
58
implementation " androidx.compose.ui:ui:$compose_version "
58
59
implementation " androidx.compose.material:material:$compose_version "
60
+ implementation " androidx.compose.material:material-icons-core:$compose_version "
59
61
implementation " androidx.compose.ui:ui-tooling-preview:$compose_version "
60
- implementation ' androidx.lifecycle:lifecycle-runtime-ktx:2.4.0 '
61
- implementation ' androidx.activity:activity-compose:1.4.0 '
62
- testImplementation ' junit:junit:4.+ '
63
- androidTestImplementation ' androidx.test.ext:junit:1.1.3 '
64
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.4.0 '
62
+ implementation ' androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 '
63
+ implementation ' androidx.activity:activity-compose:1.10.1 '
64
+ testImplementation ' junit:junit:4.13.2 '
65
+ androidTestImplementation ' androidx.test.ext:junit:1.2.1 '
66
+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.6.1 '
65
67
androidTestImplementation " androidx.compose.ui:ui-test-junit4:$compose_version "
66
68
debugImplementation " androidx.compose.ui:ui-tooling:$compose_version "
67
69
}
0 commit comments