Skip to content

Commit

Permalink
fix android compile version
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudgiuliani committed Aug 30, 2023
1 parent b885b64 commit e03a092
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion android/gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ext {

// build Tools
android_min_version = 14
android_target_version = 33
android_target_version = 34
android_build_tools_version = '33.0.1'
android_gradle_version = '7.3.1'
}
2 changes: 1 addition & 1 deletion android/koin-android-compat/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
}

android {
compileSdkVersion android_target_version
compileSdk android_target_version
buildToolsVersion android_build_tools_version

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion android/koin-android-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
}

android {
compileSdkVersion android_target_version
compileSdk android_target_version
buildToolsVersion android_build_tools_version

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion android/koin-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
}

android {
compileSdkVersion android_target_version
compileSdk android_target_version
buildToolsVersion android_build_tools_version

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion android/koin-androidx-navigation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
}

android {
compileSdkVersion android_target_version
compileSdk android_target_version
buildToolsVersion android_build_tools_version

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion android/koin-androidx-workmanager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
}

android {
compileSdkVersion android_target_version
compileSdk android_target_version
buildToolsVersion android_build_tools_version

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion compose/koin-androidx-compose-navigation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ext {
}

android {
compileSdkVersion 34
compileSdk android_target_version
buildToolsVersion '30.0.3'

defaultConfig {
Expand Down
3 changes: 2 additions & 1 deletion compose/koin-androidx-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ ext {
}

android {
compileSdkVersion 34
compileSdk android_target_version
buildToolsVersion '30.0.3'

defaultConfig {
minSdkVersion 21
targetSdkVersion android_target_version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
2 changes: 1 addition & 1 deletion compose/sample-android-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android'
apply from: "../gradle/versions.gradle"

android {
compileSdkVersion 34
compileSdk android_target_version
buildToolsVersion '30.0.3'

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion examples/android-perfs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion android_target_version
compileSdk android_target_version
buildToolsVersion android_build_tools_version

defaultConfig {
Expand Down
4 changes: 2 additions & 2 deletions examples/androidx-samples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion android_target_version
compileSdk android_target_version
buildToolsVersion android_build_tools_version

defaultConfig {
minSdkVersion 23
targetSdkVersion android_target_version
// targetSdkVersion android_target_version
applicationId "org.koin.sample.sandbox"
versionCode 1
versionName "1.0"
Expand Down

0 comments on commit e03a092

Please sign in to comment.