From 6c806aee3bf8841fb4d8eb74cd047b279e6ec030 Mon Sep 17 00:00:00 2001 From: lisonge Date: Sat, 2 Sep 2023 21:36:09 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=93=9D=E5=A5=8F=E4=BA=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + app/build.gradle.kts | 17 ++++++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ed3b512c..1cf67a77 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ ## 安装 - [releases](https://github.com/gkd-kit/gkd/releases) +- [蓝奏云](https://lisonge.lanzouy.com/ifQgP179ag6f) ## 功能 diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 9696395c..4e938d1b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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)