62 questions
0
votes
0
answers
31
views
App X opens but doesn't show search results with Linking.openURL
I'm developing an app in React Native and trying to open the X app programmatically by passing a search string with Linking.openURL.
The behavior I'm seeing is the following:
The X app opens ...
1
vote
0
answers
97
views
React Native: Deep link handler doesn't fire on Pixel 6
The listener for deep-links successfully registers my handler:
Linking.addEventListener('url', handleUrlDeepLink);
But on Pixel 6 for some reason the handler doesn’t fire when clicking on a deep link.
...
2
votes
1
answer
394
views
The OAuth response flow failed
I'm using aws amplify along with react-native-inappbrowser. I enabled Google SSO authentication and it is working fine, but when I added GitHub auth it doesn't work as expected.
I added a listener ...
1
vote
1
answer
3k
views
How do I open the deep link in mobile browser rather than mobile app in react native
What I am trying to do is opening a deep link in mobile browse (Not in app). Deeplinking is all set up, all the links with specific domains are opening/navigating into app opened from any where else. ...
1
vote
0
answers
365
views
React Native iOS Linking with HTTP Scheme
I want to use deep linking with iOS on React Native. My URL scheme is http instead of my app name. How is it possible to make it work using this scheme. It worked on Android by adjusting the scheme ...
3
votes
1
answer
2k
views
Open link in current window react-native Linking
I'm trying to use react-native for a web\app. I would like to create a simple link to a different screen, but using urls and not elements.
I managed to get it to work with 2 annoying caviats:
the ...
0
votes
1
answer
4k
views
React Native View PDF
I have a react-native app which opens a PDF document using Linking as shown below:
const handlePress = () => {
Linking.openURL(
"https://link/to/file.pdf"
);
};
The problem ...
1
vote
0
answers
502
views
how to check if the app is installed and open it or redirect to play store
I'm building an App with Google Fit, I got all the permissions working, but since Google fit needs to be downloaded from the play store I'd like to know how can I create a button that checks if the ...
0
votes
1
answer
2k
views
React Native Linking openURL : Use special characters like # and *
I am building a React Native app able to trigger mobile payment via USSD codes (widely used in Africa).
A USSD code is run from the dialer app of any phone and looks like this : #144# or #1*1*4# for ...
0
votes
1
answer
1k
views
Module not found: Can't resolve 'react-native' even though sqlite.core.js is in the ./node_modules/react-native-sqlite-storage/lib/
I am trying to get started by linking sqlite with react native on a simple app.. but somehow keep getting below error:
I tried reinstall, relink, delete modules and yarn start...
Please help!
Module ...
2
votes
0
answers
853
views
DynamicLinks not working on first open React Native
I have my project in React Native (v0.62.2), and I am using Firebase Dynamic Links (v^12.0.0). I have configured it all as the documentation indicates, but I have a problem:
In iOS, if I use an ...
0
votes
1
answer
140
views
react native link number doesn't work after #
I'm actually trying to link a code like #873766 directly into the phone's calling application.
But only the # appears...
Did you guys have a solution for this?
1
vote
1
answer
3k
views
How to open android gallery app from React Native app
I am having trouble while opening the gallery using linking on android devices. It works perfectly on iOS.
I am using this.
openPhotos = () =>{
switch(Platform.OS){
case "ios":
...
6
votes
5
answers
18k
views
npx react-native link dose not working for me
I'm trying to use this (https://mehrankhandev.medium.com/ultimate-guide-to-use-custom-fonts-in-react-native-77fcdf859cf4) to add font but I have problem with this part...
npx react-native link
this ...
0
votes
0
answers
189
views
Can we submit an html post form in react-native?
I have a question if we can submit an html post form with Linking in react-native. If yes how we can submit it?
I want to submit it to default browser (not with webview) and here is html form:
<...