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
0
votes
1 answer

How to check from Javascript if an app is installed on the phone in Safari on iOS 9+?

Before iOS 9, one way to check whether an app was installed on the iPhone from javascript was to use a custom URI scheme followed by a timeout: window.location = "yourapp://"; setTimeout(function() { window.location = "https://yourdomain.com"; },…
mjsxbo
  • 2,116
  • 3
  • 22
  • 34
0
votes
0 answers

iOS Universal Link: Unable to simultaneously satisfy constraints

I believe this is the reason why Applink is not working for us. When we try accessing our domain name (which has Universal Link correctly setup) we get this error : Unable to simultaneously satisfy constraints. Probably at least one of the…
0
votes
1 answer

assetlinks domain vs host

I am trying to setup applinks in my android app. In my manifest file I have something like this:
Didier Prophete
  • 1,834
  • 1
  • 12
  • 11
0
votes
1 answer

Android app link tries to verify a random host and fails

I have added applinks to my app and have uploaded assetlinks.json file already to my domain. Using the App Link Support, clicking on Link and Verify gives me the following: So far so good. Now when I install the app and filter IntentFilterIntentOp…
SoH
  • 2,180
  • 2
  • 24
  • 53
0
votes
1 answer

Parameter involved in the SHA256_cert_fingerprint for the app link verification

I wanted to support app link feature for my android application and while using App-link Assitant tool in the android studio, and while signing the apk I was using my own generated *.jks file. I found there is a field SHA256_cert_fingerprint. I…
0
votes
1 answer

What is wrong with deep links in Facebook app?

I've tried for hours to make a deep link for my client's app working in Facebook app, and I don't know what I did wrong but it is still not working. Here is my HTML, and if some more information is needed to help answer (like the app name and so…
arnaudambro
  • 2,403
  • 3
  • 25
  • 51
0
votes
1 answer

firebase dynamic link error on IOS "Deep Link does not contain valid required params"

My app is an ionic app and i use cordova-plugin-firebase-dynamiclinks it works on android but on ios i get this error: 6.19.0 - [Firebase/Analytics][I-ACS023001] Deep Link does not contain valid required params. URL params: { "_cpb" = 1; …
0
votes
1 answer

Android app links launching my app within the calling app

I've just setup App Links within my Android app, following the official Android guides online. I can click on a link and my app launches just fine. However, I observe different behaviour depending on where the link was clicked from. From the Gmail…
Sam Crawford
  • 311
  • 4
  • 16
0
votes
0 answers

Extract APP Links (URI) from a third party app

I am developing an Android App (A) that can launch a third part app (B) and go to a specific page of the app. For example, In my app A, I have a button which when pressed must open another application and start an activity. I understood this can be…
0
votes
2 answers

Android App Link : Difference Build APK and Generate Signed APK

I am a little bit confused about two differents behavior and I would need some help. I am working on an android application with App Links implemented. I have configured my project to use a keystore for Released build version. When I use RUN…
0
votes
1 answer

Http deeplinks does not work in Chrome on Android

I would like to open an app (if its installed) when I click on the link on my webpage. I've implemented App Links according to official docs but the link is opened in Chrome and my app is not offered to handle the link. If I click on the link in…
Billda
  • 5,707
  • 2
  • 25
  • 44
0
votes
1 answer

Should I use intents or App Links to connect two native apps in Android?

I have a simple requirement. Native app A needs to start an Activity in native app B. Per Google Dev docs there are two ways to do it: 1. Use Implicit Intents 2. Use App Links Which is a better approach from security standpoint?
Sai
  • 2,089
  • 3
  • 19
  • 30
0
votes
1 answer

How to remove widget from initstate or load widget widget in initstate only once?

Apologies if my question is a bit dumb but I have just started with flutter. I am working on sharing and deep link flutter. I have created intent and everything is working perfect except one. I am calling "initUniLinks" on my homepage not…
NilxSingh
  • 253
  • 2
  • 5
  • 17
0
votes
1 answer

Android app link - disambiguation dialog issue when Associating a website with multiple apps

When associating a website with multiple apps in IOS, the order of app in json decides what app opens after scanning the QR Code of the linked url. The first app in the json will automatically open without a disambiguation dialog of choosing between…
0
votes
2 answers

Opening app from email link in NativeScript vue iOS

Edit For more explanation on how to use this plugin with vue, please see NativeScript vue, vuex and urlhandler I'm trying to make it so that a link in an email can open an app I'm building (its a test app I'm building to learn NativeScript). I am…
Rob
  • 1,576
  • 3
  • 22
  • 52