Change iOS app extension names/bundle ids for dev build
This commit is contained in:
committed by
Samuel Newman
parent
87ce60cf8b
commit
753089af13
+10
-4
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user