Skip to content

Commit

Permalink
[ANDROAPP-5801] Update gradle to 8.2.0, kotlin to 1.9.21, compose to …
Browse files Browse the repository at this point in the history
…1.5.11 (#167)
  • Loading branch information
andresmr authored Dec 15, 2023
1 parent dd4346e commit da1352c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kotlin {
val androidMain by getting {
dependencies {
implementation(project(":common"))
implementation("androidx.activity:activity-compose:1.7.2")
implementation("androidx.activity:activity-compose:1.8.2")
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ kotlin {
val androidMain by getting {
dependencies {
api("androidx.appcompat:appcompat:1.6.1")
api("androidx.core:core-ktx:1.10.1")
api("androidx.core:core-ktx:1.12.0")
}
}
val androidUnitTest by getting {
Expand All @@ -56,7 +56,6 @@ android {

defaultConfig {
minSdk = (findProperty("android.minSdk") as String).toInt()
targetSdk = (findProperty("android.targetSdk") as String).toInt()
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
Expand Down
4 changes: 1 addition & 3 deletions designsystem/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ kotlin {

val androidMain by getting {
dependencies {
api("androidx.activity:activity-compose:1.7.2")
api("androidx.activity:activity-compose:1.8.2")
api("androidx.appcompat:appcompat:1.6.1")
api("androidx.core:core-ktx:1.12.0")
implementation("androidx.compose.material3:material3:1.1.2")
implementation("com.google.zxing:core:3.5.2")
}
}
Expand Down Expand Up @@ -64,7 +63,6 @@ android {

defaultConfig {
minSdk = (findProperty("android.minSdk") as String).toInt()
targetSdk = (findProperty("android.targetSdk") as String).toInt()
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ android.targetSdk=34
android.minSdk=21

#Versions
kotlin.version=1.9.10
agp.version=8.1.2
compose.version=1.5.10
kotlin.version=1.9.21
agp.version=8.2.0
compose.version=1.5.11

0 comments on commit da1352c

Please sign in to comment.