yamf_launcher/app/build.gradle.kts
2024-12-22 03:47:40 +02:00

55 lines
No EOL
1.4 KiB
Kotlin

plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "eu.ottop.yamlauncher"
compileSdk = 34
defaultConfig {
applicationId = "eu.ottop.yamlauncher"
minSdk = 31
targetSdk = 34
versionCode = 10
versionName = "1.6"
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
buildTypes {
release {
isDebuggable = false
isShrinkResources = true
isMinifyEnabled = true
isProfileable = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
buildFeatures {
viewBinding = true
}
}
dependencies {
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
implementation("androidx.recyclerview:recyclerview:1.3.2")
implementation("androidx.preference:preference-ktx:1.2.1")
implementation("androidx.activity:activity-ktx:1.9.3")
implementation("androidx.constraintlayout:constraintlayout:2.2.0")
}