add dev icon

This commit is contained in:
Hailey
2024-07-08 19:25:27 -07:00
committed by Samuel Newman
parent 5205885aac
commit a569e41d2a
2 changed files with 8 additions and 4 deletions
+8 -4
View File
@@ -33,14 +33,16 @@ module.exports = function (_config) {
return { return {
expo: { expo: {
version: VERSION, version: VERSION,
name: IS_DEV ? 'Bluesky Dev' : 'Bluesky', name: 'Bluesky',
slug: 'bluesky', slug: 'bluesky',
scheme: 'bluesky', scheme: 'bluesky',
owner: 'blueskysocial', owner: 'blueskysocial',
runtimeVersion: { runtimeVersion: {
policy: 'appVersion', policy: 'appVersion',
}, },
icon: './assets/app-icons/ios_icon_default_next.png', icon: IS_DEV
? './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,
@@ -184,7 +186,7 @@ module.exports = function (_config) {
backgroundColor: '#006AFF', backgroundColor: '#006AFF',
}, },
googleServicesFile: IS_DEV googleServicesFile: IS_DEV
? './google-services.example.json' ? './google-services.json.example'
: './google-services.json', : './google-services.json',
package: IS_DEV ? 'dev.xyz.blueskyweb.app' : 'xyz.blueskyweb.app', package: IS_DEV ? 'dev.xyz.blueskyweb.app' : 'xyz.blueskyweb.app',
intentFilters: [ intentFilters: [
@@ -431,7 +433,9 @@ module.exports = function (_config) {
}, },
{ {
targetName: 'BlueskyClip', targetName: 'BlueskyClip',
bundleIdentifier: 'xyz.blueskyweb.app.AppClip', bundleIdentifier: IS_DEV
? 'dev.xyz.blueskyweb.app.AppClip'
: 'xyz.blueskyweb.app.AppClip',
}, },
], ],
}, },
Binary file not shown.

After

Width:  |  Height:  |  Size: 466 KiB