Questions tagged [react-native-deep-linking]

30 questions
7
votes
1 answer

How to get sha256_cert_fingerprints for assetlinks.json for Expo?

Instructions for android universal deep links requires you to upload .well-known/assetlinks.json for verification. Expo deep linking documentation points you to format the file per official android documentation, but the documentation assumes you…
codewizard
  • 1,029
  • 1
  • 13
  • 22
5
votes
0 answers

useURL hook expo-linking for background app

The expo-linking React Native package has a hook named useURL that isn't working for me when the app is in the background. From the docs it Returns the initial URL followed by any subsequent changes to the URL. The problem I'm having with my managed…
5
votes
0 answers

React Native Deep Linking - Android application opening for all URLs (For configured domain)

We converted our native Android application to React native app and used expo managed workflow for new application. For deeplinking we used linking documentation from expo and everything worked fine. But recently we noticed For some…
4
votes
0 answers

Linking URL for whatsapp business when both whatsapp and whatsapp business applications are installed

I know that we can use following url to open whatsapp from my react native application whatsapp://send?text=MyTextMessage&phone=MyPhoneNumber Or we can use https://api.whatsapp.com/send/?phone=MyPhoneNumber&text=MyTextMessage This works fine when…
3
votes
2 answers

How to write Deep link in React Native

I have Implemented Deep Linking in react native. My routing is done like this. AuthNavigator (Stack Navigator) Login Signup Home (Stack Navigator) Home navigator (Stack Navigator) EquipmentBooking EquipmentStatus I want to navigate to…
2
votes
0 answers

The parameter of react navigation deeplink comes out as undefined only when the app is closed

I am implementing react native/android/react navigation deeplink. And I'm using react-native v0.68, react-navigation v6.xx https://reactnavigation.org/docs/configuring-links/ In the case of foreground or background in the app open state, insert…
2
votes
1 answer

how to get a query params in react native deep linking

I have implemented deep linking in my app. My app is opening using added links but unable to get query params from one link here is the code of my deep linking config const linking = { prefixes: ['demo://'], config: { screens: { …
2
votes
1 answer

Universal links support for TestFlight apps

I have an app in TestFlight right now, and it's not ready to go public. I'm willing to add universal links to it, so I can invite my testers to test the app via a universal link which holds a few parameters. The flow would be: Generate a universal…
2
votes
0 answers

Linking Url is not cleared

Am working on deep linking, I integrated Linking and created deep link. Its worked fine but when i click back button then page redirect to previous screen and suddenly it redirect to chat page am not able to clear the URL when i come…
2
votes
0 answers

Deep linking launches the app, but handles the external url wrongly

I am developing an React Native project, using React-Navigation v5. I now try to implement deep linking feature. I followed the official instruction set up deep linking successfully (I mean the app is launched by custom url scheme). Next I need to…
2
votes
0 answers

Shortened URL as custom URI scheme deep link

Question: There is a requirement to open an app's particular screen, based on a deep link in the react-native app. I had implemented demo:://app/... as a custom scheme in Andoridmanifest.xml for Android and info.plist for iOS. When I test it with…
1
vote
2 answers

react navigation deep linking with stack and tab navigation is not working

I'm using react-native v0.68, react-navigation v6.xx When i open app with url(prefix://home/doctor/:category), it works. But DoctorList components is always first route so I can't use navigation.back() to go TabOne(path: 'home') components. It just…
1
vote
0 answers

Nested navigation Deep Linking with Expo React Native

I have my nested stack navigation set up like this. Drawer navigator is my root component made up of a stack navigator which has a tab navigator nested inside of it const AppStack = () => { const navigation = useNavigation() const TabStack…
1
vote
3 answers

can we pass invitation code in url in react native?

I'm trying to signup User in React Native. There are 2 steps to do it When I enter the info of user Like (FirstName, LastName, and email), the User got a link in his/her mail. When the User is clicking on this link, its redirecting to New Signup…
Muhammad Umar
  • 190
  • 1
  • 3
  • 15
1
vote
2 answers

React native expo app: deeplinking back into the app

I'm a react native beginner, I created the app with latest versions of react-native and expo. The app starts on iPhone and android with expo go and I can start a webbrowser on a button click. The webbrowser shows my companie's login page and after…
Boommeister
  • 1,591
  • 2
  • 15
  • 54
1
2