Skip to content

Commit

Permalink
Merge pull request #545 from kennethshackleton/fix-build-tools-version
Browse files Browse the repository at this point in the history
Fix Android build tools version, 34.0.0.
  • Loading branch information
kennethshackleton committed Aug 17, 2024
2 parents d338817 + f56c0c8 commit 9973685
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AndroidCLI/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repositories {

android {
compileSdk = Versions.ANDROID_SDK.version.toInt()
buildToolsVersion = libs.android.tools.gradle.get().version!!
buildToolsVersion = "34.0.0"
namespace = "com.bloomberg.selekt.cli"
defaultConfig {
applicationId = "com.bloomberg.selekt.cli"
Expand Down
2 changes: 1 addition & 1 deletion AndroidLibBenchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repositories {

android {
compileSdkVersion(Versions.ANDROID_SDK.version.toInt())
buildToolsVersion(libs.android.tools.gradle.get().version!!)
buildToolsVersion("34.0.0")
namespace = "com.bloomberg.selekt.android.benchmark"
defaultConfig {
minSdkVersion(21)
Expand Down
2 changes: 1 addition & 1 deletion selekt-android-sqlcipher/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ val allABIs = listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")

android {
compileSdk = Versions.ANDROID_SDK.version.toInt()
buildToolsVersion = libs.android.tools.gradle.get().version!!
buildToolsVersion = "34.0.0"
namespace = "com.bloomberg.selekt.android.sqlcipher"
ndkVersion = "27.0.12077973"
defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion selekt-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ repositories {

android {
compileSdk = Versions.ANDROID_SDK.version.toInt()
buildToolsVersion = libs.android.tools.gradle.get().version!!
buildToolsVersion = "34.0.0"
namespace = "com.bloomberg.selekt.android"
defaultConfig {
minSdk = 21
Expand Down

0 comments on commit 9973685

Please sign in to comment.