Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at 8ee9709fbbbb9e6b622f12cf498d3cc34b531bfe 16 lines 523 B view raw
1const {withEntitlementsPlist} = require('@expo/config-plugins') 2 3const withAppEntitlements = config => { 4 // eslint-disable-next-line no-shadow 5 return withEntitlementsPlist(config, async config => { 6 config.modResults['com.apple.security.application-groups'] = [ 7 `group.app.bsky`, 8 ] 9 config.modResults[ 10 'com.apple.developer.associated-appclip-app-identifiers' 11 ] = [`$(AppIdentifierPrefix)${config.ios.bundleIdentifier}.AppClip`] 12 return config 13 }) 14} 15 16module.exports = {withAppEntitlements}