update app icon (#9219)

This commit is contained in:
Samuel Newman
2025-10-16 20:08:06 +03:00
committed by GitHub
parent a482dae936
commit d49d43f6eb
5 changed files with 10 additions and 6 deletions
+4 -4
View File
@@ -40,7 +40,7 @@ module.exports = function (_config) {
runtimeVersion: { runtimeVersion: {
policy: 'appVersion', policy: 'appVersion',
}, },
icon: './assets/app-icons/ios_icon_default_light.png', icon: './assets/app-icons/ios_icon_default_next.png',
userInterfaceStyle: 'automatic', userInterfaceStyle: 'automatic',
primaryColor: '#1083fe', primaryColor: '#1083fe',
newArchEnabled: false, newArchEnabled: false,
@@ -143,7 +143,7 @@ module.exports = function (_config) {
barStyle: 'light-content', barStyle: 'light-content',
}, },
android: { android: {
icon: './assets/app-icons/android_icon_default_light.png', icon: './assets/app-icons/android_icon_default_next.png',
adaptiveIcon: { adaptiveIcon: {
foregroundImage: './assets/icon-android-foreground.png', foregroundImage: './assets/icon-android-foreground.png',
monochromeImage: './assets/icon-android-foreground.png', monochromeImage: './assets/icon-android-foreground.png',
@@ -305,8 +305,8 @@ module.exports = function (_config) {
prerendered: true, prerendered: true,
}, },
next: { next: {
ios: './assets/app-icons/icon_default_next.png', ios: './assets/app-icons/ios_icon_default_next.png',
android: './assets/app-icons/icon_default_next.png', android: './assets/app-icons/android_icon_default_next.png',
prerendered: true, prerendered: true,
}, },
Binary file not shown.

After

Width:  |  Height:  |  Size: 369 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 486 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 KiB

@@ -41,10 +41,14 @@ export function useAppIconSets() {
id: 'next', id: 'next',
name: _(msg({context: 'Name of app icon variant', message: 'Next'})), name: _(msg({context: 'Name of app icon variant', message: 'Next'})),
iosImage: () => { iosImage: () => {
return require(`../../../../assets/app-icons/icon_default_next.png`) return require(
`../../../../assets/app-icons/ios_icon_default_next.png`,
)
}, },
androidImage: () => { androidImage: () => {
return require(`../../../../assets/app-icons/icon_default_next.png`) return require(
`../../../../assets/app-icons/android_icon_default_next.png`,
)
}, },
}, },
] satisfies AppIconSet[] ] satisfies AppIconSet[]