From cfb3829a0ccd9f4cba1e9f5435ced458ad1b428c Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Thu, 12 Sep 2024 15:22:54 +0200 Subject: [PATCH] Update compile and target SDK versions to 33 This change upgrades the compileSdk and targetSdk versions from 31 to 33. It ensures compatibility with the latest Android features and security updates. --- customtabs-example/build.gradle.kts | 4 ++-- customtabs/build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/customtabs-example/build.gradle.kts b/customtabs-example/build.gradle.kts index 8b53c6a..8803015 100644 --- a/customtabs-example/build.gradle.kts +++ b/customtabs-example/build.gradle.kts @@ -30,9 +30,9 @@ android { defaultConfig { applicationId = "com.example.saschpe.customtabs" - compileSdk = 31 + compileSdk = 33 minSdk = 17 - targetSdk = 31 + targetSdk = 33 versionCode = 170030003 versionName = "3.0.3" base.archivesBaseName = "$applicationId-$versionName" diff --git a/customtabs/build.gradle.kts b/customtabs/build.gradle.kts index 9aef963..795b3a0 100644 --- a/customtabs/build.gradle.kts +++ b/customtabs/build.gradle.kts @@ -31,7 +31,7 @@ android { namespace = "saschpe.android.customtabs" defaultConfig { - compileSdk = 31 + compileSdk = 33 minSdk = 16 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" }