Questions tagged [applinks]

Applinks is an open, cross-platform solution for app-to-app linking that gives the tools need to expose deep links in the app or to link out to others.

Publishing App Link metadata is as simple as adding a few lines to the <head> tag in the HTML for the content. Apps that link to the content can then use this metadata to deep-link into the app, take users to an app store to download the app, or take them directly to the web to view the content. This allows developers to provide the best possible experience for their users when linking to their content.

App Links are specified using the tags defined in the registry below. Each target platform requires a different set of metadata in order to provide enough context for one app to deep-link into another.

Official Documentation

375 questions
12
votes
1 answer

Android: app linking - supporting only certain paths?

I want to setup app linking for my app but only for it to be active on certain paths. In other words, in my manifest:
Jon
  • 7,941
  • 9
  • 53
  • 105
12
votes
3 answers

Handling specific routes in Android M app links

Android M has added support for App links by creating a special assetlinks.json on the web server to delegate link handling to a mobile app. For example, here's the content of such file: [{ "relation":…
Michael
  • 22,196
  • 33
  • 132
  • 187
12
votes
5 answers

Multiple subdomain support with App Links

I've been reading the docs for supporting app links for android and the website my app supports works with subdomains but there's too many subdomains and they are built dynamically. I was wondering if there is a way to support many subdomains…
howdy_miguel
  • 473
  • 5
  • 17
11
votes
3 answers

Android Applink url resolving conflicts error

I added .well-known/assetlinks.json to my site and when I try link and verify in android studio app link assistant it says "Success! Your app is associated with the selected domains." But when I test app links in android studio it says "URL…
nikinci
  • 444
  • 6
  • 25
11
votes
2 answers

How to create assetlinks.json when website is handled by multiple apps

In order to link my app with the web page in need to define assetlink.json like below. [{ "relation": ["delegate_permission/common.handle_all_urls"], "target": { "namespace": "android_app", "package_name": "package name", …
app explorer
  • 113
  • 1
  • 1
  • 7
11
votes
4 answers

Android Digital Asset Link verification fails for site using LetsEncrypt SSL cert

I had just about started implementing support for App Links into my app, when I bumped into this unusual issue. Following the steps in the Android Studio app links tool, I was quickly able to make the necessary changes. However, when I came to the…
anirvan
  • 4,797
  • 4
  • 32
  • 42
11
votes
2 answers

Are Universal Links cached in iOS? Do they work offline?

I tested Universal Links in iOS by turning on Airplane mode and saw that the correct application was opened (instead of a website) This indicates some level of "caching" the apple-app-site-association. I want to determine the extent to which this…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
11
votes
3 answers

Create Deep Link for Mobile App

I want to create a promotional link for my app - which i can distribute via email. When the user clicks on the link from the email, a webpage does this: Determines which OS (iOS or Android) If app installed on device - opens the app Else - takes…
vepe
  • 111
  • 1
  • 3
10
votes
2 answers

Android: An error occurred while trying to get the sha-256 fingerprint of the keystore file

I'm trying to create an App link but the App links assistant keeps throwing the below error in Step 3 (Associate website) while generating the assetlinks.json. An error occurred while trying to get the sha-256 fingerprint of the keystore file.…
AndroidDev
  • 5,193
  • 5
  • 37
  • 68
10
votes
2 answers

How to setup Associated Domains / Universal Links

I am trying to redirect the user to the installed app when visiting www.example.com/success as well as show a banner when visiting the homepage www.example.com. With my current implantation the url DOES NOT redirect and open the app and neither does…
A.Roe
  • 973
  • 3
  • 15
  • 34
10
votes
1 answer

React native Linking to another app

I am trying to link to another app from my react native application (google maps for example). I required the Linking module as it's written here: https://facebook.github.io/react-native/docs/linking.html My code contains a simple button which…
noa-dev
  • 3,561
  • 9
  • 34
  • 72
10
votes
1 answer

Applink cannot be resolved in facebook SDK

I am working with android.I had integrated facebook sdk into my app.Now facebbok sdk shows the error "Applink cannot be resolved".How can I solve this problem.Please help me I am new to android
dcruzlour
  • 101
  • 5
9
votes
1 answer

Link is not opened as instant app in some devices

I had published my instant app in play store. when i click the link from gmail it opens as instant app in some devices (Samsung s6 note ,moto g4 plus) In some devices its not working ,but those devices has Settings->Google->Instant Apps option. but…
8
votes
3 answers

Android applinks not working in released build but work correctly from a local install

I have a game that is using applinks. The applinks work fine when running debug and release versions from my computer but don't work for the version downloaded from Google Play. With the Google Play version, I get a dialog asking which app should…
Will Calderwood
  • 4,393
  • 3
  • 39
  • 64
8
votes
1 answer

App Linking not working on testing environment

I am trying to implement app linking in my application. When I open the app I have a login screen with a login button. This login button when is pressed goes in browser for web login and then it is redirect into app. I want I open the application…
Gabrielle
  • 4,933
  • 13
  • 62
  • 122
1
2
3
24 25