Update target sdk to 34

This commit is contained in:
tomaThomas 2024-10-11 22:58:23 +02:00
parent 1859354f94
commit 28fd3fb218
No known key found for this signature in database
GPG key ID: DEE963DC84059108
13 changed files with 25 additions and 24 deletions

View file

@ -1,12 +1,12 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdk 33
compileSdk 34
namespace "code.name.monkey.appthemehelper"
defaultConfig {
minSdk 21
targetSdk 33
targetSdk 34
}
buildTypes {
release {
@ -18,8 +18,8 @@ android {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}