Questions tagged [deep-linking]

In the World Wide Web, deep linking is the usage of a hyperlink that is expressed as an absolute URL (i.e. http://example.com/path/page), vs. a relative one (i.e. /path/page). Deep links to other websites can be desired or not by the site the link points to.

In the World Wide Web, deep linking is the usage of a hyperlink that is expressed as an absolute URL (i.e. http://example.com/path/page), vs. a relative one (i.e. /path/page). Deep links to other websites can be desired or not by the site the link points to.

3278 questions
182
votes
14 answers

Launch an app from within another (iPhone)

Is it possible to launch any arbitrary iPhone application from within another app?, For example in my application if I want the user to push a button and launch right into the Phone app (close the current app, open the Phone app). would this be…
Jeff
124
votes
15 answers

I am trying to test android deep link urls through adb to launch my app

When I type the command in adb: ./adb shell am start -W -a android.intent.action.VIEW -d "example:gizmos" com.myapp I get this error: Starting: Intent { act=android.intent.action.VIEW dat=example://gizmos pkg=com.myapp } Error: Activity not…
user3773337
  • 2,086
  • 4
  • 20
  • 29
88
votes
4 answers

Android Deep Linking with multiple query parameters

I'm trying to deep link my app and have implemented the following in my AndroidManifest.xml to open the proper activity.
Varun Ramani
  • 1,389
  • 1
  • 10
  • 14
81
votes
8 answers

Android deep link does not work if the app is opened by deep link already

Deep link does not work if the app is opened by deep link already. However, if I open the app not by triggering a deeplink, like clicking the app icon to open the app. Then triggering deeplink afterward would always work. Here come the details: So…
Shing
  • 1,255
  • 1
  • 10
  • 18
77
votes
9 answers

Deep linking and multiple app instances

I have implemented deep linking in my app. I added this intent filter in my manifest file, and the deep linking is working.
Hari Ram
  • 3,098
  • 5
  • 23
  • 30
76
votes
12 answers

Deep-linking intent does not work

I followed the insttructions on https://developer.android.com/training/app-indexing/deep-linking.html, but when I want to trigger the intent through adb with: adb shell am start -W -a android.intent.action.BROWSEABLE -d…
Mahoni
  • 7,088
  • 17
  • 58
  • 115
75
votes
4 answers

Android Deep linking: Use the same link for the app and the play store

I have a website which enables the user to make a search query. The query might take some time to complete (minutes to days), and I would like to enable the user to download an Android app and receive the answer there, by sending an email with a…
Adam Matan
  • 128,757
  • 147
  • 397
  • 562
74
votes
4 answers

What are all the custom URL schemes supported by the Facebook iPhone app?

Note These URL's are likely not available. Facebook has been updated a number of times and did not officially support any of these. /Note I am trying to see what information is available about the Facebook app on the iPhone. So far I have found…
72
votes
4 answers

Deferred Deep Linking in iOS

We're trying to implement deferred deep linking in one of our iOS applications to encourage users to invite their friends to use the app, and reward users based on how many installs occur from their referral link. Basically similar to TapStream's…
Kiran Panesar
  • 3,094
  • 2
  • 22
  • 28
56
votes
11 answers

Android app link not working in android 12 always opening in browser

I have hosted assetlinks file into our domain https://ourdomain/.well-known/assetlinks.json And also verified this using https://developers.google.com/digital-asset-links/tools/generator and from android studio's App Links Assitant and got verified…
Asd
  • 561
  • 1
  • 4
  • 5
54
votes
4 answers

Universal links on iOS vs. deep links (URL schemes)

As I'm reading, iOS 9 introduced Universal Links. In the "Support Universal Links" section in Apple's App Search Programming Guide, it says that this is not exactly like deep linking with URL schemes, but I'm not totally clear about this…
AppsDev
  • 12,319
  • 23
  • 93
  • 186
53
votes
5 answers

How to open flutter application from url?

For example, i have case in my flutter app when user can recover his password. In that case user will receive link on e-mail, and i want by clicking on that link, my flutter app will open, and route to specific screen.
Vadziec Poplavsky
  • 709
  • 1
  • 6
  • 12
47
votes
1 answer

Multiple Navigation Graphs in Android and Deep Links

I have 3 Activities: Main, Login, Wizard. For each Activity I have separate Navigation Graph with fragment destinations. Main Nav Graph has also Login Activity destination to launch Login screen on logout. App seems to work correctly when…
Michał Ziobro
  • 10,759
  • 11
  • 88
  • 143
40
votes
4 answers

How to extract Sha256 Cert Fingerprint for Branch.io

I am trying to integrate deep linking with branch.io. But in order to do this. I need to extract the SHA256 Cert Fingerprints to put them in my branch.io dashboard. How Do I do this? what is my certificate? They have too little data on how this is…
rosu alin
  • 5,674
  • 11
  • 69
  • 150
38
votes
1 answer

iOS system hangs before opening App Store URL

I have a HTML page with a Download app button. When clicked by an iOS user, it redirect the users to the App Store via itms-services. The link I used here is: window.location.replace("itms-apps://itunes.apple.com/app/id578505616"); It looks like…
ethangui
  • 1,285
  • 11
  • 15
1
2 3
99 100