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
1
vote
1 answer

Android app link - Open URL from app to custom chrome tab

I have enabled the app link for my app, in some scenarios I want open URL custom chrome tab for some URLs. CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(); CustomTabsIntent customTabsIntent = builder.build(); …
Rahul Devanavar
  • 3,917
  • 4
  • 32
  • 61
1
vote
1 answer

Do not trigger the intent filter of same application from which an intent is fired

I have a scenario where my app will catch a particular URL(call primary URL) through an intent filter and send this URL to an API which gives me a secondary URL and based on this secondary URL I will navigate the user to an in-app destination…
Nari
  • 333
  • 5
  • 13
1
vote
0 answers

How to solve Statement List Tester Error?

When i enter all the required info in Statement List Generator and Tester and say Test statement its giving following error : No app deep linking permission found for {App package name} at {Hosting site domain} I am facing problem of opening…
Psp360
  • 123
  • 1
  • 8
1
vote
2 answers

Deeplink into another fragment [ANDROID]

The structure of activity and fragment is like : Using NavigationDrawer. MainActivity has a container for Fragment, in one container there should be have many fragment. After launch the app, default of fragment is fragment A. Implement deeplink into…
yoppie97
  • 177
  • 4
  • 18
1
vote
2 answers

Do I need to include for App Links?

My Android App Links feature was not working until I added the meta-data tag: Which is a suggestion I read here and here. However that is not mentioned by…
Ricardo Belchior
  • 576
  • 1
  • 3
  • 14
1
vote
0 answers

Why applinks doesn't work on every browser?

I try to call my app on a specific url. To do that I use this intent-filter in the manifest :
Poch
  • 11
  • 2
1
vote
1 answer

DeepLink opens app but callback in not firing until the app goes to background

EDITED: Right now my only issue with deep linking is that whenever i click deeplink and My application is not running it will open my HomeActivity and deeplinked Activity in background. If i press back button from HomeActivity my app…
1
vote
1 answer

How can I open my React Native App from the browser?

I would like to open my app from the browser. example: I open a browser, type in: https://open.my.app, or app://www.example.com and have my app as an option come up. I read about Deep Links and I am quite sure I set up my project properly, YET…
Istvan Orban
  • 1,607
  • 3
  • 18
  • 34
1
vote
2 answers

Android Instant App with Firebase Hosting

I'm currently working on an android instant app. I used firebase hosting, to verify the app links. This works fine for https links: https://xyz.firebaseapp.com/.well-known/assetlinks.json. But when I want to release the instant app, google forces me…
1
vote
2 answers

Open CustomTabIntent with AppLink enabled application

I am trying to add CustomTabIntent on my application to open url of my website. The problem is that I have implemented AppLinking into my application due to which Chrome Tab doesn't appear and it is redirected to my deeplink handler class which…
Kislay Kumar
  • 243
  • 1
  • 2
  • 10
1
vote
0 answers

Open application after NFC read

I have an Android application. It opens with deep links like myapp://params. I have QR tags with an address like http://myaddress.com/myapp/params that loads a page with the following content: MyApp
Teejay
  • 7,210
  • 10
  • 45
  • 76
1
vote
1 answer

App Links inside Custom Tabs in the same app

I am facing a problem where I'm loading some web pages in Custom Tabs, and I want to use App Links when going to a certain page to open the native app. From my investigation, it looks like if the page is open with Custom Tabs in the same application…
Filip Marusca
  • 176
  • 1
  • 11
1
vote
0 answers

Open Chrome WebApp from another website/application - Android

I am currently trying to link multiple Applications together using Intents and Package names. Only problem is one of the items is a Web App (Chrome save to desktop style). Which obviously doesnt have a package name. Is there a way to give the web…
Mitchell Day
  • 196
  • 2
  • 14
1
vote
1 answer

App links not working

In my application I want to use app links. For this in my AndroidManifest.xml I am defining activity as :
Tarun Deep Attri
  • 8,174
  • 8
  • 41
  • 56
1
vote
1 answer

xamarin forms app link - open PCL view from ios app delegate

In a Xamarin Forms cross platform app I can open the app from an external email app link. It opens in android just fine, by adding an intent to the manifest, then within the activity which starts, I create another intent to fire the main…
DarkW1nter
  • 2,933
  • 11
  • 67
  • 120