Remove "-Dev" from iOS app extensions targetName
This commit is contained in:
committed by
Samuel Newman
parent
1883df5f0f
commit
7f9befbe59
+2
-4
@@ -408,9 +408,7 @@ module.exports = function (_config) {
|
||||
ios: {
|
||||
appExtensions: [
|
||||
{
|
||||
targetName: IS_DEV
|
||||
? 'Share-with-Bluesky-Dev'
|
||||
: 'Share-with-Bluesky',
|
||||
targetName: 'Share-with-Bluesky',
|
||||
bundleIdentifier: IS_DEV
|
||||
? 'dev.xyz.blueskyweb.app.Share-with-Bluesky'
|
||||
: 'xyz.blueskyweb.app.Share-with-Bluesky',
|
||||
@@ -421,7 +419,7 @@ module.exports = function (_config) {
|
||||
},
|
||||
},
|
||||
{
|
||||
targetName: 'BlueskyNSE-Dev',
|
||||
targetName: 'BlueskyNSE',
|
||||
bundleIdentifier: IS_DEV
|
||||
? 'dev.xyz.blueskyweb.app.BlueskyNSE'
|
||||
: 'xyz.blueskyweb.app.BlueskyNSE',
|
||||
|
||||
@@ -6,11 +6,7 @@ const {withExtensionInfoPlist} = require('./withExtensionInfoPlist')
|
||||
const {withExtensionViewController} = require('./withExtensionViewController')
|
||||
const {withIntentFilters} = require('./withIntentFilters')
|
||||
|
||||
const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development'
|
||||
|
||||
const SHARE_EXTENSION_NAME = IS_DEV
|
||||
? 'Share-with-Bluesky-Dev'
|
||||
: 'Share-with-Bluesky'
|
||||
const SHARE_EXTENSION_NAME = 'Share-with-Bluesky'
|
||||
const SHARE_EXTENSION_CONTROLLER_NAME = 'ShareViewController'
|
||||
|
||||
const withShareExtensions = config => {
|
||||
|
||||
Reference in New Issue
Block a user