tangled mirror of catsky-🐱 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social

update app icon (#9219)

authored by samuel.fm and committed by GitHub d49d43f6 a482dae9

Changed files
+10 -6
assets
src
screens
Settings
AppIconSettings
+4 -4
app.config.js
··· 40 40 runtimeVersion: { 41 41 policy: 'appVersion', 42 42 }, 43 - icon: './assets/app-icons/ios_icon_default_light.png', 43 + icon: './assets/app-icons/ios_icon_default_next.png', 44 44 userInterfaceStyle: 'automatic', 45 45 primaryColor: '#1083fe', 46 46 newArchEnabled: false, ··· 143 143 barStyle: 'light-content', 144 144 }, 145 145 android: { 146 - icon: './assets/app-icons/android_icon_default_light.png', 146 + icon: './assets/app-icons/android_icon_default_next.png', 147 147 adaptiveIcon: { 148 148 foregroundImage: './assets/icon-android-foreground.png', 149 149 monochromeImage: './assets/icon-android-foreground.png', ··· 305 305 prerendered: true, 306 306 }, 307 307 next: { 308 - ios: './assets/app-icons/icon_default_next.png', 309 - android: './assets/app-icons/icon_default_next.png', 308 + ios: './assets/app-icons/ios_icon_default_next.png', 309 + android: './assets/app-icons/android_icon_default_next.png', 310 310 prerendered: true, 311 311 }, 312 312
assets/app-icons/android_icon_default_next.png

This is a binary file and will not be displayed.

assets/app-icons/icon_default_next.png

This is a binary file and will not be displayed.

assets/app-icons/ios_icon_default_next.png

This is a binary file and will not be displayed.

+6 -2
src/screens/Settings/AppIconSettings/useAppIconSets.ts
··· 41 41 id: 'next', 42 42 name: _(msg({context: 'Name of app icon variant', message: 'Next'})), 43 43 iosImage: () => { 44 - return require(`../../../../assets/app-icons/icon_default_next.png`) 44 + return require( 45 + `../../../../assets/app-icons/ios_icon_default_next.png`, 46 + ) 45 47 }, 46 48 androidImage: () => { 47 - return require(`../../../../assets/app-icons/icon_default_next.png`) 49 + return require( 50 + `../../../../assets/app-icons/android_icon_default_next.png`, 51 + ) 48 52 }, 49 53 }, 50 54 ] satisfies AppIconSet[]