From 56c7505b2cbb624c8b9982a967bb2f83ee18fbbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernat=20Borr=C3=A1s?= Date: Sat, 3 Dec 2022 14:49:08 +0100 Subject: [PATCH] Update android SDK versions --- barista-compose/build.gradle.kts | 4 ++-- barista/build.gradle.kts | 6 +++--- sample/build.gradle.kts | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) 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"