achorein / expo-share-intent

šŸš€ Simple share intent in an Expo Native Module
MIT License
119 stars 10 forks source link

fix: check "eas.build.experimental.ios.appExtensions" config compatiā€¦ #43

Closed achorein closed 3 months ago

achorein commented 3 months ago

Summary

Check the "eas.build.experimental.ios.appExtensions" config compatibilty from app.json, avoiding multiple share extension on iOS.

"eas": {
  "build": {
    "experimental": {
      "ios": {
        "appExtensions": [
          {
            "targetName": "ShareExtension",
            "bundleIdentifier": "xxx.xxx.xxx.share-extension",
            "entitlements": {
              "com.apple.security.application-groups": [
                "group.com.robinheidenis.hephaestus"
              ]
            }
          },
          {
            "targetName": "ShareExtension",
            "bundleIdentifier": "xxx.xxx.xxx.share-extension"
          }
        ]
      }
    }
  },
}

Issue

https://github.com/achorein/expo-share-intent/issues/39