From 2a60faf4fef206ba4817c59eec46989af4a9f905 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 27 Feb 2024 20:34:11 -0800 Subject: [PATCH 1/4] add dev team (#3011) --- plugins/shareExtension/withXcodeTarget.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/shareExtension/withXcodeTarget.js b/plugins/shareExtension/withXcodeTarget.js index 694624691d..ce70b392d4 100644 --- a/plugins/shareExtension/withXcodeTarget.js +++ b/plugins/shareExtension/withXcodeTarget.js @@ -49,6 +49,13 @@ const withXcodeTarget = (config, {extensionName, controllerName}) => { } } + pbxProject.addTargetAttribute( + 'DevelopmentTeam', + 'B3LX46C5HS', + extensionName, + ) + pbxProject.addTargetAttribute('DevelopmentTeam', 'B3LX46C5HS') + return config }) } From ffeef8fd49da590a4b5f7bb8b0418ec3b94709c9 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 27 Feb 2024 20:54:12 -0800 Subject: [PATCH 2/4] update config (#3012) --- app.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app.config.js b/app.config.js index fa9735dc2b..2a1100b9e6 100644 --- a/app.config.js +++ b/app.config.js @@ -145,6 +145,18 @@ module.exports = function (config) { ].filter(Boolean), extra: { eas: { + build: { + experimental: { + ios: { + appExtensions: [ + { + targetName: 'Share-with-Bluesky', + bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky', + }, + ], + }, + }, + }, projectId: '55bd077a-d905-4184-9c7f-94789ba0f302', }, }, From ba667af80e8c23603b23a03f11d05e8b3324f9ca Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 27 Feb 2024 21:09:59 -0800 Subject: [PATCH 3/4] add entitlements (#3013) --- app.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app.config.js b/app.config.js index 2a1100b9e6..04b186bf85 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', @@ -152,6 +155,9 @@ module.exports = function (config) { { targetName: 'Share-with-Bluesky', bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky', + entitlements: { + 'com.apple.security.application-groups': 'group.app.bsky', + }, }, ], }, From e2ae534fde4a351ac4c8ebf18a492f0fc6ab7abc Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 27 Feb 2024 21:11:48 -0800 Subject: [PATCH 4/4] Fix app config --- app.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app.config.js b/app.config.js index 04b186bf85..a18addcce4 100644 --- a/app.config.js +++ b/app.config.js @@ -156,7 +156,9 @@ module.exports = function (config) { targetName: 'Share-with-Bluesky', bundleIdentifier: 'xyz.blueskyweb.app.Share-with-Bluesky', entitlements: { - 'com.apple.security.application-groups': 'group.app.bsky', + 'com.apple.security.application-groups': [ + 'group.app.bsky', + ], }, }, ],