deer social fork for personal usage. but you might see a use idk. github mirror

Remove "-Dev" from iOS app extensions targetName

authored by Nick Manos and committed by Elijah Seed-Arita bae026db f3272526

Changed files
+3 -9
plugins
shareExtension
+2 -4
app.config.js
··· 374 374 ios: { 375 375 appExtensions: [ 376 376 { 377 - targetName: IS_DEV 378 - ? 'Share-with-Bluesky-Dev' 379 - : 'Share-with-Bluesky', 377 + targetName: 'Share-with-Bluesky', 380 378 bundleIdentifier: IS_DEV 381 379 ? 'dev.xyz.blueskyweb.app.Share-with-Bluesky' 382 380 : 'xyz.blueskyweb.app.Share-with-Bluesky', ··· 387 385 }, 388 386 }, 389 387 { 390 - targetName: 'BlueskyNSE-Dev', 388 + targetName: 'BlueskyNSE', 391 389 bundleIdentifier: IS_DEV 392 390 ? 'dev.xyz.blueskyweb.app.BlueskyNSE' 393 391 : 'xyz.blueskyweb.app.BlueskyNSE',
+1 -5
plugins/shareExtension/withShareExtensions.js
··· 6 6 const {withExtensionViewController} = require('./withExtensionViewController') 7 7 const {withIntentFilters} = require('./withIntentFilters') 8 8 9 - const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development' 10 - 11 - const SHARE_EXTENSION_NAME = IS_DEV 12 - ? 'Share-with-Bluesky-Dev' 13 - : 'Share-with-Bluesky' 9 + const SHARE_EXTENSION_NAME = 'Share-with-Bluesky' 14 10 const SHARE_EXTENSION_CONTROLLER_NAME = 'ShareViewController' 15 11 16 12 const withShareExtensions = config => {