Skip to main content

All Questions

1 vote
0 answers
99 views

Unable to Redirect Screen Following Deep Link Path on Receiving VoIP Notification When Device is Locked

I am currently working on implementing VoIP call functionality in my React Native app using the CallKeep SDK and React Native Deep linking. The deep linking part is handled using the linking object ...
Krinish Radadiya's user avatar
4 votes
0 answers
616 views

Is there a way to await in getStateFromPath in react-navigation?

I'm using a custom getStateFromPath function to resolve my paths to a state, though to resolve some of the path routes, I need to make an api request to a router endpoint. Is there any way I can ...
mesh00's user avatar
  • 61
0 votes
0 answers
1k views

React Native deep linking not working on React Navigation V6

When I configure my links and url-scheme with react navigation it falls into the fallback error. Don't know why. Sometimes when making changes it worked but then it didn't. I have followed some ...
Carlos Yanes's user avatar
5 votes
1 answer
6k views

How should I structure a deep linking config object to work with these navigators?

Given the following navigator hierarchy, what is the correct way to structure the linking config object? As currently constructed, when trying to open 'myapp://bizpage/1', I get this error: The ...
AnthonyH's user avatar
3 votes
0 answers
539 views

Why doesn't react-navigation open the correct url from deeplink when the app is closed?

I have a deeplinking configuration setup to open a specific page when a URL is clicked on the device. This is working fine when the app is open in the background, but if the app is closed, it just ...
Jake Chambers's user avatar
0 votes
1 answer
1k views

Deeplinking with a domain name

I have the following code in my App.js: import React, { useState, useRef, useEffect } from 'react'; import { SafeAreaView, Text } from 'react-native'; import { NavigationContainer, useLinking } from '@...
dcangulo's user avatar
  • 2,047
0 votes
1 answer
427 views

How to open a deep link sent in notification? - React-Native

I've successfully implemented deep links in my project. Tested it as per the docs. Now I'd like to open a deep link sent in a notification. How to do that? Thanks.
haxpanel's user avatar
  • 4,618
5 votes
1 answer
3k views

React-Native Deeplinks with React-Navigation not working

I've been trying to set the deeplinks for my app, via react-navigation (v5) so I followed their instructions. I've edited my app delegate to include the package I need and the deeplinking/ universal ...
verybaddeveloper's user avatar
0 votes
1 answer
3k views

React native ios deeplinking with universal URL

I've been facing issue setting up deeplinking with react native for IOS with react navigation 5. When i try the URL scheme of myownapp://homepage/ it opens up the app. But if i try with url : https:/...
Gaurav Roy's user avatar
  • 11.9k
0 votes
1 answer
3k views

Is there a way to navigate to a default screen (Profile) if the path name does not match a route that I define explicitly?

I have tried writing the config object for my react native app according to the react-navigation configuring links docs. I defined a series of path --> route mappings including Chat:'feed' and ...
Kamar Mack's user avatar
1 vote
1 answer
6k views

React Navigation get Param from deep linking not working

I have configured my router like: const SwitchRouter = createSwitchNavigator( { Splash: { screen: Launch, path: 'hello/:code', }, App: HomeStack, }, { ...
Alex DG's user avatar
  • 1,869