3,671 questions
0
votes
0
answers
34
views
Android Custom Deep Link Bug
I need help solving a problem my team is running into with our DeepLink solution on Android platform. We deprecated Firebase dynamic links last year, and replaced it with Android AppLinks + our own ...
Best practices
0
votes
0
replies
40
views
How to implement email verification using Express JS with React native expo?
I am planning to build a project using an Express JS REST API with React native. I am wondering how email verification is usually handled with this kind of stack.
A flow is:
User registers with ...
0
votes
0
answers
92
views
Deep link error OnCreate for Android in NET9 MAUI
In my NET9 MAUI application, I'm trying to add the deeplink functionality. In the App.xaml.cs I added this code
protected override Window CreateWindow(IActivationState activationState)
{
var ...
1
vote
0
answers
74
views
WhatsApp In-App Browser Blocks branch io Deep Link Redirection
Deep links from branch.io clicked within WhatsApp's in-app browser are not functioning correctly. Instead of directly launching the app, the link opens in WhatsApp's internal browser and then ...
0
votes
1
answer
64
views
Deep link Cold start cant get params from initial url
So I successfully applied deep link in my application so when a user uses device camera AFTER application has opened it will work without any issue.
But once I close the application and then scan the ...
1
vote
1
answer
53
views
Why does Expo Router first show “unmatched route” or a flicker before it navigates to /news?
I'm working on deep link handling in an Expo Router (React Native) app.
When I open a deep link like this: myapp://news/a81c95f9-a6ae-4f1a-8e95-f30b344bbc46
it contains a news ID at the end which I ...
0
votes
0
answers
68
views
Amazon product deeplink from Facebook app
I have a webpage that is linked from a Facebook post
my idea is to deeplink an amazon product through that page, make it opening in the Amazon app instead of Facebook in-app browser
following this in ...
0
votes
0
answers
136
views
Branch.io React Native iOS — branch.subscribe not firing consistently (sometimes gets params, sometimes not)
I’m using Branch.io in a React Native (0.81.0) iOS app, and my deep links only work sometimes.
Occasionally, branch.subscribe returns params correctly.
Other times, it never fires at all — both cold ...
0
votes
1
answer
57
views
iOS Universal Links not triggering scene(_:continue:) when app is already running [duplicate]
I'm trying to handle iOS Universal Links in my SwiftUI app.
Cold start: when I open the link from Safari or Notes and the app is closed — everything works fine.
Hot start: when the app is already in ...
0
votes
2
answers
93
views
onNewIntent() not called on API level <35
We are using dynamic links (branch.io) in our app, they work correctly when the app is closed, but only work on API >=35 if the app is already open.
onNewIntent() doesn't get called on lower APIs.
...
0
votes
0
answers
51
views
React Native with WebView and Deep Links
I am now developing the React Native app with the WebView. I have some links from emails that can lead to my website. In that case I want to open my app that is installed and open the WebView with ...
0
votes
3
answers
144
views
React Native Deep Linking - Multiple Paths for single screen
I’m trying to handle multiple deep link paths that should open the same screen in my React Navigation setup.
For example, both of these URLs should open the same ChallengesScreen:
mydomain.com/...
0
votes
0
answers
50
views
Password reset link is not clickable ( NodeJs + Nodemailer + Flutter )
so I'm trying to implement the reset password feature by sending a reset password through Nodemailer where supposed that when the user clicks on the link it redirects him to the appropriate app screen ...
1
vote
1
answer
88
views
.NET MAUI Android: Custom URL scheme not triggering
I'm building a .NET MAUI Android app and want to handle custom URL schemes so that when someone clicks a link (e.g., mycustomschema://auth/callback?token=123), the app launches or resumes.
Here’s what ...
1
vote
0
answers
213
views
Deep linking works on cold start, but not when app is already running (React Native)
I am working on deep linking with universal links in a React Native iOS app.
When I tap a universal link and the app is closed (cold start), it opens correctly and navigates as expected.
But when ...