Merge branch 'bluesky-social:main' into patch-3

zio/stable
Minseo Lee 2024-02-28 16:26:19 +09:00 committed by GitHub
commit b723c4ca7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View File

@ -65,6 +65,9 @@ module.exports = function (config) {
...SPLASH_CONFIG, ...SPLASH_CONFIG,
dark: DARK_SPLASH_CONFIG, dark: DARK_SPLASH_CONFIG,
}, },
entitlements: {
'com.apple.security.application-groups': 'group.app.bsky',
},
}, },
androidStatusBar: { androidStatusBar: {
barStyle: 'dark-content', barStyle: 'dark-content',
@ -145,6 +148,23 @@ module.exports = function (config) {
].filter(Boolean), ].filter(Boolean),
extra: { extra: {
eas: { 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', projectId: '55bd077a-d905-4184-9c7f-94789ba0f302',
}, },
}, },

View File

@ -49,6 +49,13 @@ const withXcodeTarget = (config, {extensionName, controllerName}) => {
} }
} }
pbxProject.addTargetAttribute(
'DevelopmentTeam',
'B3LX46C5HS',
extensionName,
)
pbxProject.addTargetAttribute('DevelopmentTeam', 'B3LX46C5HS')
return config return config
}) })
} }