Skip to content

Commit

Permalink
Added buildToolVersion 33.0.1 for better emulator performance on CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitMaliDeveloper committed Mar 15, 2024
1 parent df59ed1 commit 9107c4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ object Config {
const val compileSdk = 33 // SDK version used by Gradle to compile our app.
const val minSdk = 24 // Minimum SDK (Minimum Support Device) is 24 (Android 7.0 Nougat).
const val targetSdk = 33 // Target SDK (Maximum Support Device) is 33 (Android 13).
const val buildToolVersion = "33.0.1" // buildToolVersion for API level 33 (Android 13).

val javaVersion = JavaVersion.VERSION_1_8

Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/plugin/AllProjectConfigurer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class AllProjectConfigurer {
defaultConfig {
minSdk = Config.minSdk
setTargetSdkVersion(Config.targetSdk)
buildToolsVersion(Config.buildToolVersion)
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down

0 comments on commit 9107c4a

Please sign in to comment.