enable viewbinding

update compile sdk to 34
update kotlin version to 1.9.0
This commit is contained in:
fatih ergin
2023-08-16 00:06:52 +03:00
parent c6063590b3
commit ee64d29218
4 changed files with 27 additions and 11 deletions

View File

@ -1,6 +1,5 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
@ -9,12 +8,13 @@ if (keystorePropertiesFile.exists()) {
}
android {
compileSdkVersion 33
namespace "com.simplemobiletools.applauncher"
compileSdk 34
defaultConfig {
applicationId "com.simplemobiletools.applauncher"
minSdkVersion 23
targetSdkVersion 33
minSdk 23
targetSdk 34
versionCode 51
versionName "5.11.2"
multiDexEnabled true
@ -32,9 +32,14 @@ android {
}
}
buildFeatures {
buildConfig true
viewBinding true
}
buildTypes {
debug {
applicationIdSuffix ".debug"
applicationIdSuffix ".debug"
}
release {
minifyEnabled true
@ -45,7 +50,16 @@ android {
}
}
flavorDimensions "variants"
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
flavorDimensions = ["variants"]
productFlavors {
core {}
fdroid {}
@ -63,7 +77,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:4c83ec8740'
implementation 'com.github.SimpleMobileTools:Simple-Commons:d1629c7f1a'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
}