+6
-4
app.config.js
+6
-4
app.config.js
···
33
33
return {
34
34
expo: {
35
35
version: VERSION,
36
-
name: IS_DEV ? 'Bluesky Dev' : 'Bluesky',
36
+
name: 'Bluesky',
37
37
slug: 'bluesky',
38
38
scheme: 'bluesky',
39
39
owner: 'blueskysocial',
40
40
runtimeVersion: {
41
41
policy: 'appVersion',
42
42
},
43
-
icon: './assets/app-icons/ios_icon_default_light.png',
43
+
icon: IS_DEV ? './assets/app-icons/ios_icon_default_light.png' : './assets/app-icons/icon_dev.png',
44
44
userInterfaceStyle: 'automatic',
45
45
primaryColor: '#1083fe',
46
46
newArchEnabled: false,
···
153
153
backgroundColor: '#1185FE',
154
154
},
155
155
googleServicesFile: IS_DEV
156
-
? './google-services.example.json'
156
+
? './google-services.json.example'
157
157
: './google-services.json',
158
158
package: IS_DEV ? 'dev.xyz.blueskyweb.app' : 'xyz.blueskyweb.app',
159
159
intentFilters: [
···
397
397
},
398
398
{
399
399
targetName: 'BlueskyClip',
400
-
bundleIdentifier: 'xyz.blueskyweb.app.AppClip',
400
+
bundleIdentifier: IS_DEV
401
+
? 'dev.xyz.blueskyweb.app.AppClip'
402
+
: 'xyz.blueskyweb.app.AppClip',
401
403
},
402
404
],
403
405
},
assets/app-icons/icon_dev.png
assets/app-icons/icon_dev.png
This is a binary file and will not be displayed.