- 新增 AboutScreen:应用图标、名称、版本、开源许可入口 - 新增 LicensesScreen 与 Licenses 数据源,展示第三方依赖许可证 - App 内页面导航(Main/About/Licenses) - 双平台 getAppIconUri() 及 app_icon.png 资源 - 菜单"关于"项接入 AboutScreen 跳转 - iOS Info.plist 补充 CFBundleShortVersionString / CFBundleVersion Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
355 B
Plaintext
13 lines
355 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
|
<true/>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
</dict>
|
|
</plist>
|