diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-02-28 16:26:19 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-28 16:26:19 +0900 |
commit | b723c4ca7ce22f673ea60e119da8552c452741da (patch) | |
tree | 76f4aacd4d3ba5733202dce32356eb7a9df5fada /app.config.js | |
parent | 3767e763906088d410da9ca99532c093368ca196 (diff) | |
parent | e2ae534fde4a351ac4c8ebf18a492f0fc6ab7abc (diff) | |
download | voidsky-b723c4ca7ce22f673ea60e119da8552c452741da.tar.zst |
Merge branch 'bluesky-social:main' into patch-3
Diffstat (limited to 'app.config.js')
-rw-r--r-- | app.config.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app.config.js b/app.config.js index fa9735dc2..a18addcce 100644 --- a/app.config.js +++ b/app.config.js @@ -65,6 +65,9 @@ module.exports = function (config) { ...SPLASH_CONFIG, dark: DARK_SPLASH_CONFIG, }, + entitlements: { + 'com.apple.security.application-groups': 'group.app.bsky', + }, }, androidStatusBar: { barStyle: 'dark-content', @@ -145,6 +148,23 @@ module.exports = function (config) { ].filter(Boolean), extra: { eas: { + build: { + experimental: { + ios: { + appExtensions: [ + { + targetName: 'Share-with-Bluesky', + bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky', + entitlements: { + 'com.apple.security.application-groups': [ + 'group.app.bsky', + ], + }, + }, + ], + }, + }, + }, projectId: '55bd077a-d905-4184-9c7f-94789ba0f302', }, }, |