import { Share } from '@capacitor/share';
openSocial() {
Share.share({
title: 'See cool stuff',
text: 'Really awesome thing you need to see right meow',
url: 'http://ionicframework.com/',
dialogTitle: 'Share with buddies',
});
}
This code works fine till android 11. But app crashes with android 12 targetsdk=32.
Do I need to make any changes in AndroidManifest.xml?