chore: 更新应用图标资源,添加 WebP 格式并同步各平台

- 替换所有尺寸的 app_icon.png 为新版设计
- 新增 composeResources app_icon.webp
- 同步 Android mipmap 和 iOS AppIcon 资源
- 更新 getAppIconUri 缓存版本号 (?v=2)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
xfy 2026-05-20 00:56:10 +08:00
parent 557390068e
commit 5bb0cc7071
16 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 457 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 226 KiB

View File

@ -16,7 +16,7 @@ actual fun getPlatform(): Platform = AndroidPlatform()
actual fun getGifUri(gifFile: String): String = "file:///android_asset/gifs/$gifFile"
actual fun getAppIconUri(): String = "file:///android_asset/app_icon.png"
actual fun getAppIconUri(): String = "file:///android_asset/app_icon.png?v=2"
@Composable
actual fun PredictiveBackHandler(

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 457 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -12,7 +12,7 @@ actual fun getPlatform(): Platform = IOSPlatform()
actual fun getGifUri(gifFile: String): String = "compose.resource://files/$gifFile"
actual fun getAppIconUri(): String = "compose.resource://files/app_icon.png"
actual fun getAppIconUri(): String = "compose.resource://files/app_icon.png?v=2"
@Composable
actual fun PredictiveBackHandler(