Questions tagged [expo-linking]

19 questions
5
votes
1 answer

Deep Linking not working in React Native app on Android

I have setup my React Native app to use Deep Linking with expo-linking, but for some reason it just does not work on Android (yet to implement on iOS). Opening the link just opens it in the web browser, and doesn't open the app as it should. Any…
Tom
  • 213
  • 3
  • 12
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

How to effectively open downloaded file in external application using expo linking

I'm downloading a file from an URI, and trying to open it in another application. This file is a simple .xlsx spreadsheet. I'm using an Android device to test. In the code below is a reproduceble example: import React, { useCallback } from…
LBald
  • 473
  • 2
  • 11
2
votes
0 answers

How to implement webbrowser based authentication in react native expo? And the redirect_uri should be https

I'm using the expo-cli to build the project in react native, And also added this code in app.json "intentFilters": [ { "action": "VIEW", "autoVerify": true, "data": [ { "scheme":…
1
vote
0 answers

Expo deep linking takes the user to the website and throws 404 error

Whenever I tap on the link, it navigates me to the website and throws the Page not found error as the website doesn't have that screen. It's simply a landing page. Following are the snippets of the code. I want whenever the user is navigated to the…
1
vote
0 answers

How to access nested screen using expo linking

Here you can see in the last I tried to pass the URL of PaymenntMethod screen which is already defined in the stacks, I have the structure like this I am using the tabs in my react native application Home > More (Tab) > MyWallet (Screen) >…
1
vote
0 answers

Expo - Deep linking on IOS doesn't open my app inside instagram but in the browser it works

I just integrated Deep linking on my app and things are working fine. The app opens in case it's installed and if it don't it goes to the website. Links coming from whatsapp, browser, email, etc are working fine, but links coming from instagram for…
Jean Hoffmann
  • 113
  • 2
  • 8
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
0 answers

React Native navigation web linking

I developped a big app with React native with expo on Android & iOS and all works fine. Then i had to convert it in a web project. URL linking work in expo (localhost:19006) but not in production. The web compiled version is hosted on a…
1
vote
0 answers

Expo linking fb post url scheme

Is there a working url scheme for posting on Facebook app (not opening in browser) from Expo app? I've read all about deep linking on Expo documentation, but whatever I type for fb:// it only opens the app and does nothing, and I need to post some…
0
votes
0 answers

React-native deep linking with handle response from other app

I have an expo app that uses expo-linking, it works great and now for some reason I want to switch to regular react-native. I did a lot of searching online but still no success. Looking forward to a detailed answer. Thanks a lot! Here is my code…
0
votes
1 answer

Fetching PDF data from API and displaying as PDF in a device's default browser using React Native Expo

I have a React Native project created using Expo where I need to make an API call to get a PDF document and display it in the default web browser of my device. The API call works without any issues in the other applications where it is utilized and…
jlewis
  • 3
  • 3
0
votes
0 answers

React Native getInitialUrl returns null on iOS build

I recently implemented push notifications into my React Native app using node-apn and fcm-node. This is working fine, and the next step was to implement deep linking. At the moment, there are two different screens we want to deep link to, and I have…
0
votes
1 answer

Method to check if instagram is installed in android device

I am working on an expo app and trying to check if instagram if installed in my device or not so I can share content on it. I am using react-native-share and testing the code on dev build but all methods returns false even though instagram app is…
1
2