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: {
|
ios: {
|
||||||
appExtensions: [
|
appExtensions: [
|
||||||
{
|
{
|
||||||
targetName: 'Share-with-Bluesky',
|
targetName: IS_DEV
|
||||||
bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky',
|
? 'Share-with-Bluesky-Dev'
|
||||||
|
: 'Share-with-Bluesky',
|
||||||
|
bundleIdentifier: IS_DEV
|
||||||
|
? 'xyz.blueskyweb.app.dev.Share-with-Bluesky'
|
||||||
|
: 'xyz.blueskyweb.app.Share-with-Bluesky',
|
||||||
entitlements: {
|
entitlements: {
|
||||||
'com.apple.security.application-groups': [
|
'com.apple.security.application-groups': [
|
||||||
'group.app.bsky',
|
'group.app.bsky',
|
||||||
@@ -417,8 +421,10 @@ module.exports = function (_config) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
targetName: 'BlueskyNSE',
|
targetName: 'BlueskyNSE-Dev',
|
||||||
bundleIdentifier: 'xyz.blueskyweb.app.BlueskyNSE',
|
bundleIdentifier: IS_DEV
|
||||||
|
? 'xyz.blueskyweb.app.dev.BlueskyNSE'
|
||||||
|
: 'xyz.blueskyweb.app.BlueskyNSE',
|
||||||
entitlements: {
|
entitlements: {
|
||||||
'com.apple.security.application-groups': [
|
'com.apple.security.application-groups': [
|
||||||
'group.app.bsky',
|
'group.app.bsky',
|
||||||
|
|||||||
Reference in New Issue
Block a user