I'm using this library for deep linking is my React Native application (only IOS is concerned)
If the app isn't installed it successfully opens the apple store
.
But the problem is even if the app is installed, it opens the apple store
with open
button.
Here is my code
AppLink.maybeOpenURL('my apple store app', { appName: 'xxxxx', appStoreId: 'xxxxxx', appStoreLocale: 'xxxxxx', playStoreId: undefined }).then(() => {
// do stuff
})
.catch((err) => {
// handle error
});
Is there something i am doing wrong ?