Questions tagged [android-deep-link]

327 questions
0
votes
0 answers

How to apply dynamic Deeplinking even if the app is installed in both cases

When the url is searched in google search bar it should be opened in app but when the link is typed in chrome address bar it should work in browser only, how can i achieve this? Behaviour of the app like Amazon app. I can apply normal deeplinking…
Shivam
  • 113
  • 7
0
votes
0 answers

.NET MAUI Deep links - Unable to instantiate activity ComponentInfo

I'm trying to integrate Stripe payments to mobile app in .NET MAUI and after a successful payment I want to redirect user back to the app. I'm trying to test the deep links with command adb shell am start -W -a android.intent.action.VIEW -d…
0
votes
0 answers

Universal links, limit deeplink path

I've just finished working through adding deeplinks to my React Native app. I have a question around limiting the paths that work with deeplinks. I'm using the new components array in the apple-app-site-association file with wildcards to deeplink…
0
votes
1 answer

Fallback destination for deep links in Compose Navigation

Suppose that my app handles all example.com deep links, but the NavHost within MainActivity handles only example.com, example.com/account, and example.com/account/detail, while other paths are forwarded to another activity called WebViewActivity.…
fikr4n
  • 3,250
  • 1
  • 25
  • 46
0
votes
1 answer

Is it possible to open a link in app without performing the domain verification in Android

I want to implement a case wherein if I click on a deeplink in android, it should direct me to the app instead of browser. Thing are working fine in Android version below 12, a dialog box appears to open the link in app or browser. But in Android 12…
Vipul Gupta
  • 239
  • 5
0
votes
1 answer

Why do i have to select an app on android flutter with deeplinks?

When coming back to my app with an deeplink i need to select the app i want to open. The app is only installed once and the device is a fresh emulator. I looked in my AndroidManifest.xml to see if the intent-filter was present more than once. Here…
0
votes
0 answers

Deeplinking in react native from outside the app

I:m implemnting payement in react native and we should redirect user to specific screen within the app after payement, payement is proceeded outside the app in a browser and redirects us to provided returnUrl So here's the scenario, i configured…
0
votes
1 answer

Custom Deep Link is not opening App when is closed

I have a custom scheme for deep link in my app but when it's closed nothing happen. public class DeepLinkReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { String deepLinkUri =…
Wellington Yogui
  • 371
  • 3
  • 18
0
votes
1 answer

android SHA-256 certificate from debug apk file

I am working on declaring app site association in assetLinks.json file and as a part I need to declare the SHA-256 certificate fingerprint. have a debug apk and is there any way to get its SHA-256 certificate fingerprint?
Sonia John Kavery
  • 2,099
  • 2
  • 20
  • 36
0
votes
0 answers

Http deeplinks does not open the native app

i am going crazy with this issue. Currently only happens with android 13 deeplinks. I have already added the assetlinks.json to the domain and in firebase whitelisted the domain too just in case but even after all of that, when i click on the link,…
anonimoo90
  • 355
  • 3
  • 13
0
votes
1 answer

How to properly add Digital Asset Link for Android Deep Link

I am trying to add a deep link to my Android app. I have followed Google documentation to generate a Digital Asset Link json file with the sha1 finger print for both my released and debug; Here is the file [ { "relation":…
Val Okafor
  • 3,371
  • 13
  • 47
  • 72
0
votes
2 answers

How to disable android deeplink or applink?

There is a WebView in my android app. It loads a webpage and user may click links to launch other apps by url scheme. Now I need to avoid this action. For example, when user click a correct deeplink or applink in WeChat, WeChat will just say…
0
votes
0 answers

Download file trought tag opens app instead of downloading due to deeplinks

I have an app with deeplinks, where I have declared what is necessary in the manifest and the links are linked to the app. Deeplinks work fine. The problem comes when I try to download a file, instead of downloading the file it interprets it is a…
0
votes
0 answers

open a deeplinked page on app directly after installing the app

Can we open a deep-linked page directly post, redirecting the user from a page? Current scenario: user clicks on the link -> if the app is not installed, taking them to play / app store, and the user installs it. -> user clicks on open, and app gets…
bagaria
  • 123
  • 1
  • 1
  • 4
0
votes
0 answers

React Native - openning deep link custom scheme from mobile browsers is not working

I've defined custom intent filter to handle deep links in my react-native based app but it does not work like expected for mobile browsers.
Maxim
  • 13
  • 4