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

Configure Feed

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

at cope-settings-sync 15 lines 486 B view raw
1const {withEntitlementsPlist} = require('expo/config-plugins') 2 3const withAppEntitlements = config => { 4 return withEntitlementsPlist(config, async config => { 5 config.modResults['com.apple.security.application-groups'] = [ 6 `group.app.witchsky`, 7 ] 8 config.modResults[ 9 'com.apple.developer.associated-appclip-app-identifiers' 10 ] = [`$(AppIdentifierPrefix)${config.ios.bundleIdentifier}.AppClip`] 11 return config 12 }) 13} 14 15module.exports = {withAppEntitlements}