Skip to content

Commit

Permalink
Update compile and target SDK versions to 33
Browse files Browse the repository at this point in the history
This change upgrades the compileSdk and targetSdk versions from 31 to
33. It ensures compatibility with the latest Android features and
security updates.
  • Loading branch information
saschpe committed Sep 12, 2024
1 parent 0fc7324 commit cfb3829
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions customtabs-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion customtabs/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ android {
namespace = "saschpe.android.customtabs"

defaultConfig {
compileSdk = 31
compileSdk = 33
minSdk = 16
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down

0 comments on commit cfb3829

Please sign in to comment.