Questions tagged [android-app-links]

114 questions
2
votes
2 answers

App Links Assistant Android Studio open in first app activity

I use the 'App Links Assistant' in Android Studio to configure links that will be opened through my app. Everything works well. But my problem is that when I open the link through the app, it opens the activity defined within the previous app where…
Fox
  • 103
  • 11
2
votes
0 answers

iOS Universal Links / Android App Links when email server changes URL

I am having some troubles with my universal links in iOS and App Links in Android when the email server add a redirect to the URL of the email. For example, we have a service that sends an email to reset your password. I want that password rest to…
AndySousa
  • 1,062
  • 2
  • 15
  • 30
2
votes
1 answer

Android applink disambiguation dialog when multiple domain declared

Hi I'm trying to include the app-links as described here: https://developer.android.com/training/app-links Everything works fine with a single domain, but when I try to include multiple domains Android's system always shows the disambiguation…
2
votes
2 answers

How to combine ACTION_SEND and ACTION_VIEW intent types?

I would like to share a URI from my app, and have the app chooser dialog show options for ACTION_SEND apps (like SMS and copy to clipboard) as well as ACTION_VIEW apps (like Chrome). So far, I can only seem to get one set of apps to show at a time.…
Chase Farmer
  • 113
  • 9
2
votes
1 answer

AppLink Configuration for Firebase Dynamic Link

How can I modify the assetlinks.json if I'm using the firebase provided domain for my dynamic links? It's accessible and currently it's returning empty array: https://setel.page.link/.well-known/assetlinks.json
1
vote
1 answer

Unpublished app accessible from Play Store download link

I had uploaded an app to the google play store but after some time I lost its upload-keystore keys. So I unpublish the previous app and re-uploaded the new app. What I am facing is the previous app is not visible in the search result, but it's…
1
vote
0 answers

Instant Dynamic Feature Module vs instant application

I've read several page on documentation, but seems its not quite clear, what structure should be done if u need to have instant app what should be available only from special link, not from play store itself (try now button). Will this structure…
Nininea
  • 2,671
  • 6
  • 31
  • 57
1
vote
1 answer

is App Linking working? if export="false"

App Linking not working if export="false"(for security reasons we have to keep false) in app linking activity in android 12 or higher versions. here app linking verification done. if we change export="true" app linking working fine in android 12…
Ram
  • 11
  • 3
1
vote
0 answers

Android App Links Assistant, avoid restarting the app

I am trying the App Links Assistant to test the browsable intents in my app as described in official doc (https://developer.android.com/studio/write/app-link-indexing) : The problem, is that whenever I test the App link, the app is always…
1
vote
0 answers

Android app linking open in webview leads to endless loop

On my project we are using an app-linking approach, however, we are still, unfortunately, forced to open these links in a webview (native implementation is on away). So let's say this is my pattern…
1
vote
1 answer

Assign Implicit deeplink programmatically

In order to add a deep link implicitly, the deep link has to be added to XML. If I want to check if the destination can handle a deep link or modify it in some way then one added in XML is prohibitive. I can see there is an addDeepLink but I haven't…
1
vote
3 answers

Force Android App Link to open in browser

We have a React Native app which shows our mobile website and adds some extra features. Since Android 12 App links (like domain.com) always open our app: https://developer.android.com/training/app-links This behaviour is not always desirable, for…
user1255553
  • 960
  • 2
  • 15
  • 27
1
vote
1 answer

Does assetlinks.json file for Android App Links have a size limit like the iOS counterpart?

In order to only allow authorized apps to open https links, Android has App Links, and iOS has Universal Links. In both, one needs to upload a file, viz. assetlinks.json for Android and apple-app-site-association file for iOS on…
Shobhit Puri
  • 25,769
  • 11
  • 95
  • 124
1
vote
0 answers

open app using app link in browsers other than chrome in Android

Currently I am developing an application which is supposed to be invoked when the user clicked on a predefined format of an url in any browsers on a web page. There are two choices of the format comes to my…
Stephen Fong
  • 697
  • 5
  • 17
1
vote
0 answers

What need to be defined as intent filter uri in AndroidManifest? My application domain, dynamic link domain or both?

Let say I have application with https://myapplication.com domain. I want my android application to be able to open links like myapplication.com/users/12. So I've uploaded https://myapplication.com/.well-known/assetlinks.json and added next lines to…