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

Configure Feed

Select the types of activity you want to include in your feed.

Change share extension name for dev build

authored by

Nick Manos and committed by
Elijah Seed-Arita
3c67d4b2 d88664d8

+5 -1
+5 -1
plugins/shareExtension/withShareExtensions.js
··· 6 6 const {withExtensionViewController} = require('./withExtensionViewController') 7 7 const {withIntentFilters} = require('./withIntentFilters') 8 8 9 - const SHARE_EXTENSION_NAME = 'Share-with-Bluesky' 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' 10 14 const SHARE_EXTENSION_CONTROLLER_NAME = 'ShareViewController' 11 15 12 16 const withShareExtensions = config => {