what is 'excludedActivityTypes' in open method options
See original GitHub issueShare.open(options).catch((err) => { err && console.log(err); })
In options of open method, there is a property excludedActivityTypes which is optional but what is use of that, i found nothing in the documentation as well.
can any one provide information what is use of excludedActivityTypes option
Thanks
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
what is 'excludedActivityTypes' in open method options #153
In options of open method, there is a property excludedActivityTypes which is optional but what is use of that, i found nothing in...
Read more >excludedActivityTypes | Apple Developer Documentation
This property contains an array of strings, each of which corresponds to the value you would find in the activityType parameter of a...
Read more >ios - How to exclude Notes and Reminders apps from the ...
I have managed to exclude lots of system provided activities (like 'Add to Reading list') by setting the appropriate excludedActivityTypes . However, I...
Read more >Share.open | React Native Share - GitHub Pages
The open() method allows a user to share a premade message via a social medium they choose. In other words, code specifies the...
Read more >Excluding Third-Party Apps from iOS 8's Share Sheet — Blog
In some cases, the source app knows which options don't make sense and ... to UIActivityViewController 's excludedActivityTypes property.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I got this to work:
excludedActivityTypes: ['com.apple.UIKit.activity.SaveToCameraRoll', 'com.apple.UIKit.activity.AssignToContact']
I couldn’t figure out the activity type for “Create Watch Face”… even Apples docs don’t include it.
@jgcmarins sure, ill send over a PR to update README after testing iOS build. Will make sure if excludedActivityTypes here is actually implemented first.