Skip to content

Commit

Permalink
Update AndroidConfiguration.kt (#189)
Browse files Browse the repository at this point in the history
Bumps Target and Compile SDK to 34
  • Loading branch information
wax911 authored Sep 20, 2023
1 parent 64146e4 commit 8738258
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ internal fun Project.configureSpotless(): Unit = spotlessExtension().run {
}

internal fun Project.configureAndroid(): Unit = baseExtension().run {
compileSdkVersion(33)
compileSdkVersion(34)
defaultConfig {
minSdk = 23
targetSdk = 33
targetSdk = 34
versionCode = props[PropertyTypes.CODE].toInt()
versionName = props[PropertyTypes.VERSION]
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -115,4 +115,4 @@ internal fun Project.configureAndroid(): Unit = baseExtension().run {
kotlinAndroidProjectExtension().run {
jvmToolchain(17)
}
}
}

0 comments on commit 8738258

Please sign in to comment.