diff --git a/barista-compose/build.gradle.kts b/barista-compose/build.gradle.kts index b819e2a3..7b2c3ca3 100644 --- a/barista-compose/build.gradle.kts +++ b/barista-compose/build.gradle.kts @@ -10,11 +10,11 @@ ext["PUBLISH_ARTIFACT_ID"] = "barista-compose" apply(from = "${rootProject.projectDir}/scripts/publish-module.gradle") android { - compileSdk = 31 + compileSdk = 33 defaultConfig { minSdk = 21 - targetSdk = 31 + targetSdk = 33 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments["clearPackageData"] = "true" diff --git a/barista/build.gradle.kts b/barista/build.gradle.kts index b39fccf5..59d3e72e 100644 --- a/barista/build.gradle.kts +++ b/barista/build.gradle.kts @@ -10,11 +10,11 @@ ext["PUBLISH_ARTIFACT_ID"] = "barista" apply(from = "${rootProject.projectDir}/scripts/publish-module.gradle") android { - compileSdk = 30 + compileSdk = 33 defaultConfig { - minSdk = 19 - targetSdk = 30 + minSdk = 21 + targetSdk = 33 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index 43f20a06..ec3fba66 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -7,11 +7,11 @@ plugins { apply(from = "../config/android-quality.gradle") android { - compileSdk = 30 + compileSdk = 33 defaultConfig { minSdk = 21 - targetSdk = 30 + targetSdk = 33 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments["clearPackageData"] = "true"