深色模式、首页设置页面和功能优化

This commit is contained in:
Developer
2026-04-02 07:06:55 +08:00
parent f0a62ed68b
commit 954d173329
88 changed files with 12157 additions and 7578 deletions

View File

@@ -3,8 +3,24 @@ android.useAndroidX=true
android.enableJetifier=true
# 统一 JVM 版本配置
# org.gradle.java.home=C:\Program Files\Eclipse Adoptium\jdk-21.0.10.7-hotspot
org.gradle.java.home=C:/Program Files/Eclipse Adoptium/jdk-21.0.10.7-hotspot
# 为所有 Kotlin 编译任务设置 JVM 目标版本
kotlin.compiler.execution.strategy=in-process
kotlin.incremental=false
# 全局 JVM 目标版本配置
org.gradle.java.version=17
kotlin.jvm.target=17
# 确保所有 Java 编译任务使用相同的版本
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# 为所有 Android 模块设置 JVM 版本
android.compileOptions.sourceCompatibility=17
android.compileOptions.targetCompatibility=17
# 为所有 Kotlin 模块设置 JVM 版本
kotlin.compiler.execution.strategy=in-process
kotlin.incremental=false
kotlin.compiler.options.jvmTarget=17