feat: 新增API响应模型、缓存配置和状态管理

refactor: 优化网络请求和错误处理

fix: 修复颜色引用和UI细节问题

docs: 更新API文档和设计规范

chore: 清理无用文件和脚本

perf: 优化图片导出和压缩逻辑

build: 更新依赖和构建配置

style: 调整代码格式和注释

test: 添加接口验证脚本

ci: 更新CI配置和脚本
This commit is contained in:
Developer
2026-04-29 01:39:48 +08:00
parent b6441a8919
commit a4b7105999
158 changed files with 45166 additions and 6450 deletions

View File

@@ -28,6 +28,13 @@ android {
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
// 排除 armeabi-v7a 以减小包体积,支持 arm64-v8a + x86_64模拟器/Chrome OS
ndk {
abiFilters.clear()
abiFilters.add("arm64-v8a")
abiFilters.add("x86_64")
}
}
buildTypes {
@@ -35,6 +42,13 @@ android {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.getByName("debug")
// release 包同样排除 armeabi-v7a
ndk {
abiFilters.clear()
abiFilters.add("arm64-v8a")
abiFilters.add("x86_64")
}
}
}
}