We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
canShareVia is returning error call back for WhatsApp on Android 11 when the target SDK is API Level 30 or higher.
canShareVia
Using window.plugins.socialsharing.share with Whatsapp selected it works.
window.plugins.socialsharing.share
This has to do with a breaking change in Android 11. The error can be resolved by adding queries to you AndroidManifest file:
<manifest> ... <queries> <package android:name="com.whatsapp" /> </queries> </manifest>
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
canShareVia
is returning error call back for WhatsApp on Android 11 when the target SDK is API Level 30 or higher.Using
window.plugins.socialsharing.share
with Whatsapp selected it works.This has to do with a breaking change in Android 11.
The error can be resolved by adding queries to you AndroidManifest file:
The text was updated successfully, but these errors were encountered: