ok there is example of usage like
import AppLink from 'react-native-app-link';
AppLink.maybeOpenURL(url, { appName, appStoreId, appStoreLocale, playStoreId }).then(() => {
// do stuff
})
.catch((err) => {
// handle error
});
appName, appStoreId, appStoreLocale, playStoreId - more or less clear where to get
Question:
Where can we find url parameter - obviously it should be like whatsapp://? But how as example it should be for some another JustEatApp https://play.google.com/store/apps/details?id=com.justeat.app.uk&hl=ru&gl=US ?
How you detect deeplink to open another app itself, not playstore with app?
ok there is example of usage like
appName, appStoreId, appStoreLocale, playStoreId - more or less clear where to get
Question:
Where can we find url parameter - obviously it should be like
whatsapp://? But how as example it should be for some another JustEatApp https://play.google.com/store/apps/details?id=com.justeat.app.uk&hl=ru&gl=US ?How you detect deeplink to open another app itself, not playstore with app?