This commit is contained in:
2025-08-26 13:32:53 +09:00
parent 1e06d82015
commit 87fa624983
9 changed files with 357 additions and 642 deletions
+15 -3
View File
@@ -18,8 +18,15 @@ android {
versionCode = 38
versionName = "2.8.2"
multiDexEnabled = true
externalNativeBuild {
cmake {
cppFlags += "-std=c++11"
}
}
}
buildTypes {
getByName("debug") {
isMinifyEnabled = false
@@ -27,19 +34,23 @@ android {
isDebuggable = true
// applicationIdSuffix = ".debug"
// versionNameSuffix = "-debug"
buildConfigField("Long","BuildDateTime", getDateTime().toString().plus("L"))
buildConfigField("Long","BuildDateTime", "${getDateTime()}L")
resValue ("string", "app_name", "Bums Launcher Debug")
}
getByName("release") {
isMinifyEnabled = true
isShrinkResources = true
buildConfigField("Long","BuildDateTime", getDateTime().toString().plus("L"))
buildConfigField("Long","BuildDateTime", "${getDateTime()}L")
proguardFiles (getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
resValue ("string", "app_name", "Bums Launcher")
}
}
externalNativeBuild {
cmake {
path = file("src/main/cpp/CMakeLists.txt")
}
}
signingConfigs {
getByName("debug") {
@@ -80,6 +91,7 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {