3

Just went through the details of flutter_sharing_intent and all fine on Android, but not working on iOS. Any clues?

Already followed the steps in setting up the environment in XCode but no luck. The main application couldn't be launched with anything shared via ActionSheet menu on iOS.

Tim Chan
  • 31
  • 2

1 Answers1

2

Seems like some typos on the package's site:

enter image description here

Erase this two lines:

<key>AppGroupId</key>
<string>$(CUSTOM_GROUP_ID)</string>

in ios/Runner/info.plist

Also the url scheme is different (ShareMedia- vs SharingMedia-) from what is shown in the code:

enter image description here

enter image description here

So change ShareMedia- to SharingMedia- in ios/Runner/info.plist

Hope it may help!