Questions tagged [android-deep-link]
327 questions
3
votes
1 answer
How to fix not show application icon into app drawer?
In my application i want use deeplink. when added intent-filter for deeplink in launcher activity, gone application icon into app drawer!
But when remove deeplink intent-filter show application icon into app drawer.
Manifest codes :

Dr. Jake
- 249
- 2
- 3
- 9
2
votes
0 answers
i am unable to open the application when tapped on the deep links using flutter only android 13
I encountered an issue where I couldn't access the application initially through the deep link provided. However, when I closed the link and directly launched the application, I was able to navigate to the correct screen. Nevertheless, when…

Pallavi Vontela
- 21
- 1
2
votes
1 answer
Issue with Deep Linking that doesn't work on android 13
I want to use Deep links in my app using Jetpack Compose and Jetpack navigation.
I try to open the app using the link from google chrome but the app isn't opened and google chrome handle the request as if it is a regular website link.
I Tried to Use…

Ali El-Sayed
- 31
- 1
- 2
2
votes
0 answers
How to get back to our app from other 3rd party app in flutter?
I'm working on a flutter project where customer will see all invoice and customer can make payment using any UPI app. My problem is how can I redirect with the response back to my app after making payment in UPI app? Currently I'm using url_launcher…

ramit_acube
- 21
- 3
2
votes
1 answer
Adding custom intent filter (exampleapp://...) to android project throws error
The project builds properly, however starting it on the device / emulator fails. Odd thing is, that the package name is called two times before the .MainActivity part comes. So the error makes total sense as to there isn't a folder name…

Sercan Samet Savran
- 755
- 1
- 9
- 20
2
votes
0 answers
after redirected to URL in android browser app is not getting open
I have login with 3rd party system which works fine. but after being redirected to our server android browser not opens my app which already configures with redirected URL in manifest.xml.
steps
user opens the app and clicks on login with 3rd…

M Faheem Rajput
- 768
- 2
- 9
- 27
2
votes
1 answer
I get error for Deep Link for some Android 13 Devices
I'm getting deep link errors on many Android 13 devices, mostly Samsung devices.
I am not getting any errors on those device.
Android - 13 - Galaxy Note20
Android - 13 - Google Pixel
I made the necessary adjustments for AndroidManifest.xml :
…

Halil Ozel
- 2,482
- 3
- 17
- 32
2
votes
0 answers
Android App Link opens browser instead of App and supported web link is disabled in app info
For Android 12 and 13, We recently enabled App link for deep link navigation. We created the assetlinks.json as mentioned here
Code from android manifest:

KsiAndroid
- 21
- 4
2
votes
1 answer
How to get Dynamic Url from firebase
We are not access share url from firebase using "https://firebase.google.com/docs/dynamic-links/android/receive"
FirebaseDynamicLinks.getInstance()
.getDynamicLink(getIntent())
.addOnSuccessListener(this, new…

Devesh Kumawat
- 173
- 1
- 6
2
votes
0 answers
Jetpack Compose Navigation Include start destination screen on navigation stack
I'm recently struggling with some complex logic for deeplink & navigation management with Jetpack Compose Navigation. My actual problem is that when I handle my deeplinks and call navController.navigate(uri) the navigation is working properly but…

Francisco Durdin Garcia
- 12,540
- 9
- 53
- 95
2
votes
0 answers
what android permissions required for deep link in versions 12 and 13
deep links URls are not working for android 12 and 13 working expected upto 11 version devices.
I did autoverify= true in intent and signature is matching with the the website wellknown folder. what permissions should use for deep link work in…

Vikas Kumar
- 51
- 1
2
votes
0 answers
Flutter : dynamic link always go to play store don't open app on device
I created a deep link on firebase
then added this code inside main activity

mohamed fathy
- 21
- 1
- 2
2
votes
1 answer
2
votes
3 answers
Android Google Pixel 6 Pro device Navigating from app to outside browser issue
we are trying to navigating from our Mobile App page to browser apps like chrome/firefox (using https url)
Please find the below sample code.
My Sample Code: passing https url only.
Intent urlObjectIntent = new Intent(Intent.ACTION_VIEW,…

harikrishnan
- 1,985
- 4
- 32
- 63
2
votes
0 answers
How manually handle deeplink in compose
In this section says what if use launchMode not standard Navigation will not automatically navigate to deeplink, however when i send intent with deeplink, Navigation navigates automatically, but i dont want it, i want control incoming intents and…

mezencevsem
- 21
- 5