mirror of
https://github.com/gkd-kit/gkd.git
synced 2024-11-15 19:22:26 +08:00
feat: 蓝奏云
This commit is contained in:
parent
df56cdaff2
commit
6a899a1412
|
@ -5,6 +5,7 @@
|
|||
## 安装
|
||||
|
||||
- [releases](https://github.com/gkd-kit/gkd/releases)
|
||||
- [蓝奏云](https://lisonge.lanzouy.com/ifQgP179ag6f)
|
||||
|
||||
## 功能
|
||||
|
||||
|
|
|
@ -34,14 +34,19 @@ android {
|
|||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
arguments += mapOf(
|
||||
"room.schemaLocation" to "$projectDir/schemas",
|
||||
"room.incremental" to "true"
|
||||
"room.schemaLocation" to "$projectDir/schemas", "room.incremental" to "true"
|
||||
)
|
||||
}
|
||||
}
|
||||
val nowTime = System.currentTimeMillis()
|
||||
buildConfigField("Long", "BUILD_TIME", jsonStringOf(nowTime) + "L")
|
||||
buildConfigField("String", "BUILD_DATE", jsonStringOf(SimpleDateFormat("yyyy-MM-dd HH:mm:ss ZZ", Locale.SIMPLIFIED_CHINESE).format(nowTime)))
|
||||
buildConfigField(
|
||||
"String", "BUILD_DATE", jsonStringOf(
|
||||
SimpleDateFormat(
|
||||
"yyyy-MM-dd HH:mm:ss ZZ", Locale.SIMPLIFIED_CHINESE
|
||||
).format(nowTime)
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
lint {
|
||||
|
@ -62,17 +67,16 @@ android {
|
|||
isMinifyEnabled = false
|
||||
setProguardFiles(
|
||||
listOf(
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
"proguard-rules.pro"
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
||||
)
|
||||
)
|
||||
signingConfig = signingConfigs.getByName("release")
|
||||
manifestPlaceholders["appName"] = "GKD"
|
||||
}
|
||||
debug {
|
||||
applicationIdSuffix = ".debug"
|
||||
signingConfig = signingConfigs.getByName("release")
|
||||
manifestPlaceholders["appName"] = "GKD-debug"
|
||||
applicationIdSuffix = ".debug"
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
|
@ -170,7 +174,6 @@ dependencies {
|
|||
implementation(libs.others.floating.bubble.view)
|
||||
|
||||
implementation(libs.destinations.core)
|
||||
// implementation(libs.destinations.animations)
|
||||
ksp(libs.destinations.ksp)
|
||||
|
||||
implementation(libs.google.hilt.android)
|
||||
|
|
Loading…
Reference in New Issue
Block a user