feat: 长辈模式(大字大按钮 + 偏好按账号隔离)+ 语音输入(按住说话 + 实时转写 + 后端代理 DashScope ASR + 患者端专用)+ 健康仪表盘背景渐变

This commit is contained in:
MingNian
2026-07-21 10:53:16 +08:00
parent 0cb5b8e85a
commit 28f704c98e
25 changed files with 2214 additions and 131 deletions

View File

@@ -36,7 +36,7 @@ android {
versionName = flutter.versionName
}
// 正式签名配置
// 正式签名配置key.properties 不存在时回退到 debug keystore仅用于本地 release 测试
signingConfigs {
create("release") {
if (keystorePropertiesFile.exists()) {
@@ -46,6 +46,11 @@ android {
file(path)
}
storePassword = keystoreProperties.getProperty("storePassword")
} else {
keyAlias = "androiddebugkey"
keyPassword = "android"
storeFile = file("${System.getProperty("user.home")}/.android/debug.keystore")
storePassword = "android"
}
}
}