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: {
|
ios: {
|
||||||
appExtensions: [
|
appExtensions: [
|
||||||
{
|
{
|
||||||
targetName: IS_DEV
|
targetName: 'Share-with-Bluesky',
|
||||||
? 'Share-with-Bluesky-Dev'
|
|
||||||
: 'Share-with-Bluesky',
|
|
||||||
bundleIdentifier: IS_DEV
|
bundleIdentifier: IS_DEV
|
||||||
? 'dev.xyz.blueskyweb.app.Share-with-Bluesky'
|
? 'dev.xyz.blueskyweb.app.Share-with-Bluesky'
|
||||||
: '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
|
bundleIdentifier: IS_DEV
|
||||||
? 'dev.xyz.blueskyweb.app.BlueskyNSE'
|
? 'dev.xyz.blueskyweb.app.BlueskyNSE'
|
||||||
: 'xyz.blueskyweb.app.BlueskyNSE',
|
: 'xyz.blueskyweb.app.BlueskyNSE',
|
||||||
|
|||||||
@@ -6,11 +6,7 @@ const {withExtensionInfoPlist} = require('./withExtensionInfoPlist')
|
|||||||
const {withExtensionViewController} = require('./withExtensionViewController')
|
const {withExtensionViewController} = require('./withExtensionViewController')
|
||||||
const {withIntentFilters} = require('./withIntentFilters')
|
const {withIntentFilters} = require('./withIntentFilters')
|
||||||
|
|
||||||
const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development'
|
const SHARE_EXTENSION_NAME = 'Share-with-Bluesky'
|
||||||
|
|
||||||
const SHARE_EXTENSION_NAME = IS_DEV
|
|
||||||
? 'Share-with-Bluesky-Dev'
|
|
||||||
: 'Share-with-Bluesky'
|
|
||||||
const SHARE_EXTENSION_CONTROLLER_NAME = 'ShareViewController'
|
const SHARE_EXTENSION_CONTROLLER_NAME = 'ShareViewController'
|
||||||
|
|
||||||
const withShareExtensions = config => {
|
const withShareExtensions = config => {
|
||||||
|
|||||||
Reference in New Issue
Block a user