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 {
expo: {
version: VERSION,
name: 'Bluesky',
name: IS_DEV ? 'Bluesky (DEV)' : 'Bluesky',
slug: 'bluesky',
scheme: 'bluesky',
owner: 'blueskysocial',
runtimeVersion: {
policy: 'appVersion',
},
icon: IS_DEV
? './assets/app-icons/ios_icon_default_next.png'
: './assets/app-icons/icon_dev.png',
icon: './assets/app-icons/ios_icon_default_next.png',
userInterfaceStyle: 'automatic',
primaryColor: '#1083fe',
newArchEnabled: false,
Binary file not shown.

Before

Width:  |  Height:  |  Size: 466 KiB