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 12 lines 327 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 return config 9 }) 10} 11 12module.exports = {withAppEntitlements}