SendIntentAndroid.isAppInstalled("com.myapp2").then(isInstalled => {
console.log('is Installed---->', isInstalled)
if (isInstalled) {
SendIntentAndroid.openApp("com.myapp2", {
"com.myapp2.reason": "just because",
"com.myapp2.data": "must be a string",
}).then(wasOpened => {
console.log('wasOpened------->', wasOpened)
});
}
else {
Linking.openURL(
'https://play.google.com/store/apps/details?id=com.myapp2',
);
}
});
The App2 is installed, Working on up to Android 9.
But afterward not working, it is going to the play store link,
The App2 is installed, Working on up to Android 9.
But afterward not working, it is going to the play store link,