chore(app): 删除 app/assets 中无引用的 app_icon PNG 图标

问题
- app/src/main/assets/app_icon.png (61KB) 与 app_icon_original.png (468KB)
  无任何代码引用(grep 全仓库确认),但作为 assets/ 文件会被原样打进 APK
- 实际应用内图标用的是 core/src/main/assets/app_icon.webp
  (Platform.kt:15 getAppIconUri() 引用),与这两个 PNG 无关

验证
- grep -rn "app_icon_original\|assets/app_icon\.png" app/src core/src
  → 无输出(仅 AGENTS.md 提及,已排除)
- unzip -l 对比: assets/ 总量 4,286,121 → 3,757,710 字节(-528,411B ≈ 516KB)
- ./gradlew :app:assembleDebug → BUILD SUCCESSFUL

影响
- 设备安装体积减少 ~516KB(APK 是 ZIP, PNG 已压缩, 故 APK 文件本身仅 -139B;
  但 assets 安装时解压展开, 设备占用是实打实少 516KB)
- 不影响任何运行时行为
This commit is contained in:
xfy 2026-06-15 13:52:21 +08:00
parent 7d6ed1428e
commit 3d39e609df
2 changed files with 0 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 457 KiB