replace custom dev icon by putting (DEV) in the app title

This commit is contained in:
Elijah Seed-Arita
2025-09-02 14:37:10 -07:00
committed by Samuel Newman
parent a569e41d2a
commit 8d278a6a0c
2 changed files with 2 additions and 4 deletions
+2 -4
View File
@@ -33,16 +33,14 @@ module.exports = function (_config) {
return { return {
expo: { expo: {
version: VERSION, version: VERSION,
name: 'Bluesky', name: IS_DEV ? 'Bluesky (DEV)' : 'Bluesky',
slug: 'bluesky', slug: 'bluesky',
scheme: 'bluesky', scheme: 'bluesky',
owner: 'blueskysocial', owner: 'blueskysocial',
runtimeVersion: { runtimeVersion: {
policy: 'appVersion', policy: 'appVersion',
}, },
icon: IS_DEV icon: './assets/app-icons/ios_icon_default_next.png',
? './assets/app-icons/ios_icon_default_next.png'
: './assets/app-icons/icon_dev.png',
userInterfaceStyle: 'automatic', userInterfaceStyle: 'automatic',
primaryColor: '#1083fe', primaryColor: '#1083fe',
newArchEnabled: false, newArchEnabled: false,
Binary file not shown.

Before

Width:  |  Height:  |  Size: 466 KiB