yamf_launcher/app/build.gradle.kts
ottoptj 1798401de3 Fixed the following issues:
- Screen rotation allowed in settings menu
- Work profile drawable not changing color on home screen
- Shortcut app menu title color
- Dependency Info blob
2024-08-15 02:10:24 +03:00

53 lines
No EOL
1.3 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 = 2
versionName = "0.6-test"
}
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")
}