Change iOS app extension names/bundle ids for dev build

This commit is contained in:
Nick Manos
2024-05-29 14:06:40 -04:00
committed by Samuel Newman
parent 87ce60cf8b
commit 753089af13
+10 -4
View File
@@ -408,8 +408,12 @@ module.exports = function (_config) {
ios: {
appExtensions: [
{
targetName: 'Share-with-Bluesky',
bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky',
targetName: IS_DEV
? 'Share-with-Bluesky-Dev'
: 'Share-with-Bluesky',
bundleIdentifier: IS_DEV
? 'xyz.blueskyweb.app.dev.Share-with-Bluesky'
: 'xyz.blueskyweb.app.Share-with-Bluesky',
entitlements: {
'com.apple.security.application-groups': [
'group.app.bsky',
@@ -417,8 +421,10 @@ module.exports = function (_config) {
},
},
{
targetName: 'BlueskyNSE',
bundleIdentifier: 'xyz.blueskyweb.app.BlueskyNSE',
targetName: 'BlueskyNSE-Dev',
bundleIdentifier: IS_DEV
? 'xyz.blueskyweb.app.dev.BlueskyNSE'
: 'xyz.blueskyweb.app.BlueskyNSE',
entitlements: {
'com.apple.security.application-groups': [
'group.app.bsky',