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 {
expo: {
version: VERSION,
name: IS_DEV ? 'Bluesky Dev' : 'Bluesky',
name: 'Bluesky',
slug: 'bluesky',
scheme: 'bluesky',
owner: 'blueskysocial',
runtimeVersion: {
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',
primaryColor: '#1083fe',
newArchEnabled: false,
@@ -184,7 +186,7 @@ module.exports = function (_config) {
backgroundColor: '#006AFF',
},
googleServicesFile: IS_DEV
? './google-services.example.json'
? './google-services.json.example'
: './google-services.json',
package: IS_DEV ? 'dev.xyz.blueskyweb.app' : 'xyz.blueskyweb.app',
intentFilters: [
@@ -431,7 +433,9 @@ module.exports = function (_config) {
},
{
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