This commit is contained in:
lunaticbum
2024-08-23 11:39:16 +09:00
parent ed24af2d41
commit b1fdea3317
10 changed files with 662 additions and 561 deletions
+23 -7
View File
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.fir.scopes.debugCollectOverrides
plugins {
id ("com.android.application")
id ("kotlin-android")
@@ -22,17 +24,28 @@ android {
isDebuggable = true
applicationIdSuffix = ".debug"
versionNameSuffix = "-debug"
resValue ("string", "app_name", "Lunar Launcher Debug")
resValue ("string", "app_name", "Bums Launcher Debug")
}
getByName("release") {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles (getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
resValue ("string", "app_name", "Lunar Launcher")
resValue ("string", "app_name", "Bums Launcher")
}
}
signingConfigs {
getByName("debug") {
storeFile = file("./bs_debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
}
applicationVariants.all {
if (buildType.name == "release") {
outputs.all {
@@ -61,14 +74,17 @@ android {
dependencies {
val kotlinVersion: String? by extra
implementation ("androidx.appcompat:appcompat:1.6.1")
implementation ("androidx.appcompat:appcompat:1.7.0")
implementation ("androidx.biometric:biometric-ktx:1.2.0-alpha05")
implementation ("androidx.browser:browser:1.8.0")
implementation ("androidx.core:core-ktx:1.12.0")
implementation ("androidx.core:core-ktx:1.13.1")
implementation ("androidx.core:core-splashscreen:1.0.1")
implementation ("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
implementation ("com.google.android.material:material:1.10.0")
implementation ("androidx.lifecycle:lifecycle-runtime-ktx:2.8.4")
implementation ("com.google.android.material:material:1.12.0")
implementation (kotlin("stdlib", version = kotlinVersion))
implementation ("com.github.cachapa:ExpandableLayout:2.9.2")
implementation ("com.squareup.picasso:picasso:2.8")
implementation ("com.squareup.picasso:picasso:2.71828")
implementation ("androidx.work:work-runtime:2.9.1")
implementation ("com.google.code.gson:gson:2.11.0")
}