chore: 完成v6.7.0版本迭代更新

本次更新涵盖多个功能模块的优化与新增:
1. 新增Wi-Fi直连配对方式与协作画布模块
2. 完成设备管理重命名API与前端适配
3. 优化日签卡片空数据保护与UI细节
4. 新增剪贴板工具与每日运势会话
5. 修复应用锁恢复、语音消息录制等已知问题
6. 完善文件传输统计与配对逻辑
7. 更新安卓权限配置与iOS隐私描述
8. 新增自动化测试脚本与文档
9. 清理旧版审计报告与测试文件
This commit is contained in:
Developer
2026-05-14 05:35:18 +08:00
parent 2c1a87e7c5
commit 228095f80a
208 changed files with 45933 additions and 12870 deletions

View File

@@ -54,6 +54,20 @@
<!-- ============================================================ -->
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<!-- ============================================================ -->
<!-- USB权限 — USB文件传输 -->
<!-- ============================================================ -->
<uses-feature
android:name="android.hardware.usb.host"
android:required="false" />
<!-- ============================================================ -->
<!-- 前台服务 — 屏幕共享 (F3) -->
<!-- Android 14+ 需要 FOREGROUND_SERVICE_MEDIA_PROJECTION -->
<!-- ============================================================ -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" />
<application
android:label="xianyan"
android:name="${applicationName}"
@@ -67,7 +81,8 @@
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
android:windowSoftInputMode="adjustResize"
android:enableOnBackInvokedCallback="true">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues