update app icon (#9219)
This commit is contained in:
+4
-4
@@ -40,7 +40,7 @@ module.exports = function (_config) {
|
||||
runtimeVersion: {
|
||||
policy: 'appVersion',
|
||||
},
|
||||
icon: './assets/app-icons/ios_icon_default_light.png',
|
||||
icon: './assets/app-icons/ios_icon_default_next.png',
|
||||
userInterfaceStyle: 'automatic',
|
||||
primaryColor: '#1083fe',
|
||||
newArchEnabled: false,
|
||||
@@ -143,7 +143,7 @@ module.exports = function (_config) {
|
||||
barStyle: 'light-content',
|
||||
},
|
||||
android: {
|
||||
icon: './assets/app-icons/android_icon_default_light.png',
|
||||
icon: './assets/app-icons/android_icon_default_next.png',
|
||||
adaptiveIcon: {
|
||||
foregroundImage: './assets/icon-android-foreground.png',
|
||||
monochromeImage: './assets/icon-android-foreground.png',
|
||||
@@ -305,8 +305,8 @@ module.exports = function (_config) {
|
||||
prerendered: true,
|
||||
},
|
||||
next: {
|
||||
ios: './assets/app-icons/icon_default_next.png',
|
||||
android: './assets/app-icons/icon_default_next.png',
|
||||
ios: './assets/app-icons/ios_icon_default_next.png',
|
||||
android: './assets/app-icons/android_icon_default_next.png',
|
||||
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',
|
||||
name: _(msg({context: 'Name of app icon variant', message: 'Next'})),
|
||||
iosImage: () => {
|
||||
return require(`../../../../assets/app-icons/icon_default_next.png`)
|
||||
return require(
|
||||
`../../../../assets/app-icons/ios_icon_default_next.png`,
|
||||
)
|
||||
},
|
||||
androidImage: () => {
|
||||
return require(`../../../../assets/app-icons/icon_default_next.png`)
|
||||
return require(
|
||||
`../../../../assets/app-icons/android_icon_default_next.png`,
|
||||
)
|
||||
},
|
||||
},
|
||||
] satisfies AppIconSet[]
|
||||
|
||||
Reference in New Issue
Block a user