Add support for Android 14-15

This commit is contained in:
Valeri Gokadze 2024-12-04 18:48:43 +04:00
parent 6752ae2afa
commit 54393ca888
17 changed files with 81 additions and 39 deletions

View file

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