Merge branch 'bluesky-social:main' into patch-3
commit
b723c4ca7c
|
@ -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',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -49,6 +49,13 @@ const withXcodeTarget = (config, {extensionName, controllerName}) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pbxProject.addTargetAttribute(
|
||||||
|
'DevelopmentTeam',
|
||||||
|
'B3LX46C5HS',
|
||||||
|
extensionName,
|
||||||
|
)
|
||||||
|
pbxProject.addTargetAttribute('DevelopmentTeam', 'B3LX46C5HS')
|
||||||
|
|
||||||
return config
|
return config
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue