116 lines
4.2 KiB
Kotlin
116 lines
4.2 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("kotlin-android")
|
|
id("kotlin-kapt")
|
|
id("kotlin-parcelize")
|
|
id("com.google.dagger.hilt.android")
|
|
id("dagger.hilt.android.plugin")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.github.droidworksstudio.launcher"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "app.easy.launcher"
|
|
minSdk = 24
|
|
targetSdk = 34
|
|
versionCode = 6
|
|
versionName = "0.0.6"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
getByName("debug") {
|
|
isMinifyEnabled = false
|
|
isShrinkResources = false
|
|
isDebuggable = true
|
|
applicationIdSuffix = ".debug"
|
|
proguardFiles (getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
resValue("string", "app_name", "Easy Launcher (Debug)")
|
|
resValue("string", "settings_backups_file", "autoBackup.debug.ini")
|
|
}
|
|
|
|
getByName("release") {
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles (getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
resValue("string", "app_name", "Easy Launcher")
|
|
resValue("string", "settings_backups_file", "autoBackup.ini")
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_17.toString()
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
dataBinding = true
|
|
}
|
|
|
|
applicationVariants.all {
|
|
if (buildType.name == "release") {
|
|
outputs.all {
|
|
val output = this as? com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
|
if (output?.outputFileName?.endsWith(".apk") == true) {
|
|
output.outputFileName =
|
|
"${defaultConfig.applicationId}_v${defaultConfig.versionName}-Signed.apk"
|
|
}
|
|
}
|
|
}
|
|
if (buildType.name == "debug") {
|
|
outputs.all {
|
|
val output = this as? com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
|
if (output?.outputFileName?.endsWith(".apk") == true) {
|
|
output.outputFileName =
|
|
"${defaultConfig.applicationId}_v${defaultConfig.versionName}-Debug.apk"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("androidx.core:core-ktx:1.13.1")
|
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
|
implementation("com.google.android.material:material:1.12.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
implementation("androidx.navigation:navigation-fragment-ktx:2.7.7")
|
|
implementation("androidx.navigation:navigation-ui-ktx:2.7.7")
|
|
implementation("com.google.android.material:material:1.12.0")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.0")
|
|
implementation("androidx.lifecycle:lifecycle-process:2.8.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.0")
|
|
implementation("androidx.work:work-runtime-ktx:2.9.0")
|
|
implementation("androidx.recyclerview:recyclerview:1.3.2")
|
|
implementation("androidx.viewpager2:viewpager2:1.1.0")
|
|
implementation("androidx.preference:preference-ktx:1.2.1")
|
|
debugImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
|
|
//room
|
|
val roomVersion = "2.6.1"
|
|
implementation("androidx.room:room-runtime:$roomVersion")
|
|
implementation("androidx.room:room-ktx:$roomVersion")
|
|
//noinspection KaptUsageInsteadOfKsp
|
|
kapt("androidx.room:room-compiler:$roomVersion")
|
|
|
|
//hilt
|
|
val hiltVersion = "2.51.1"
|
|
implementation("com.google.dagger:hilt-android:$hiltVersion")
|
|
kapt("com.google.dagger:hilt-compiler:$hiltVersion")
|
|
|
|
//biometric
|
|
implementation("androidx.biometric:biometric-ktx:1.2.0-alpha05")
|
|
|
|
//color picker
|
|
implementation("net.mm2d.color-chooser:color-chooser:0.7.3")
|
|
}
|