Questions tagged [deeplink]
234 questions
3
votes
1 answer
Branch.io deep link handler not being called with proper metadata
This is the situation: if I click one of the links that I have with custom key/values associated with it, my callback from initSessionWithLaunchOptions:andRegisterDeepLinkHandler is being triggered ok, but ‘params’ only contain the custom key/values…

vorterixe
- 83
- 5
3
votes
2 answers
How to handle deeplinking with custom scheme (Android)
I want to be able to handle deep links like this :
appnm://typeA/12
appnm://typeA/42
appnm://typeA/99
....
appnm://typeB/43
appnm://typeB/092
appnm://typeB/....
Do I have to make two activities - for type A and for type B. Or can I handle both in…

BVtp
- 2,308
- 2
- 29
- 68
2
votes
0 answers
Why are Deeplinks from browser not working?
I've implemented deeplinking in my ionic 4 app and everything works fine with:
URL Scheme links from the browser, e.g. "myapp://home"
Universal links when called using ADB command, e.g. adb shell am start -a android.intent.action.VIEW -d…

Mike Darling
- 197
- 2
- 15
2
votes
1 answer
Android deeplink could not be opened in Skype
I have an app which handles Android applinks. When clicking link on Android in Gmail native app - my app opens, but when clicking in Skype or Facebook - the web site is opened instead of my app.
The link structure is:…

anmig
- 33
- 3
2
votes
2 answers
facebook deep link android: "Deep link notification could not be sent due to some errors."
I am trying to set up Facebook deep linking feature for my Android app. (My end goal is deferred deep linking, but I am even stuck with regular deep linking, so this is my question).
I created a Facebook App and pointed it to my Android app:
I…

kurtgn
- 8,140
- 13
- 55
- 91
2
votes
0 answers
Deep linking: How to return to the app from which the deep link was called?
Is it possible to track the origin of a deep link into an app?
In my project, I’m successfully deep linking from the browser into my app, completing what I need to do, and then am wanting to be sent back to the browser. However, calling finish()…

TheWhalePhail
- 113
- 1
- 5
2
votes
0 answers
Appdelegate method of invoking Deeplink is not getting called
I have implemented deeplinks in my application. The deeplinks are opening in Xcode 11.3 and iOS 11/12/13, but it is not opening in Xcode 10.2.1. When the UIApplication.shared.open(url, options: [:]) method is invoked, then it redirects to the…

Samarth Kejriwal
- 1,168
- 2
- 15
- 30
2
votes
2 answers
How to open other application from my application
I am writing code to launch other applications from my react native application for android and ios.
Using Linking form react native I am able to redirect to Play Store/App Store but
How can I launch App if it's already installed?
* I am getting the…

Sagar
- 5,273
- 4
- 37
- 50
2
votes
0 answers
explicit deep link navigation backstack issue
Lets take an app with 2 activities MainActivity and Activity2. MainAct is the launcher activity.
Activity2 contains a default navhost fragment having a navgraph with two fragments, fragment1(start-destination), fragment2.
When starting MainActivity…

IulianT
- 350
- 1
- 3
- 13
2
votes
0 answers
Android Jetpack navigation deeplinks not generating well on AndroidManifest
The problem
I'm having trouble with deeplinks in Android navigation XML
Then Jetpack library generates this code in the Merged AndroidManifest.xml

matias
- 71
- 6
2
votes
2 answers
Deeplink with nested DrawerNavigator, TabNavigator and StackNavigator
I'm trying to configure deeplinks for my React Native app, following the official documentation, but I haven't been able to make it work. I mean, the app does open if I run adb shell am start -W -a android.intent.action.VIEW -d “crf://" packageName…

Mauricio
- 839
- 2
- 13
- 26
2
votes
1 answer
Why Deeplink not working when I am using my custom Host and schema?
I am trying open my app by clicking a link from browser. Its working fine and got the pathPrefix as well when I am using below host and schema which i tried from test sites. The same thing I just changed my host to my application it was not working…

IamVariable
- 408
- 6
- 23
2
votes
2 answers
How to automatically return back to Flutter app after user completes a web form
I am developing a toll-payment mobile application with Flutter and I need to provide an internet payment (with bank's IPG page) for user to pay her/his toll debt.
What exactly I need is to automatically return back to my Flutter app after user…

Mohsen Emami
- 2,709
- 3
- 33
- 40
2
votes
1 answer
Deep Link-Tableau
I need the deep link of Tableau Mobile App. Example:- For miscrostrategy, the deep link is "mstr://",on hyperlinking this URI, microstrategy mobile application is opened. Need to perform the same operation for Tableau.

Abhideep Das
- 65
- 1
- 7
2
votes
0 answers
Can we create Deep Link to Android apps which has no host (Domain) registered in Android Manifest.xml?
Let's assume the package name of application is com.example.com with below entry in AndroidManifest.xml

Android Dev
- 43
- 8