Questions tagged [android-deep-link]

327 questions
8
votes
1 answer

Deep link to app not working while opened in gmail built in browser

Facing an issue with opening a deep link into my app when the web page containing the deep link is opened from the Gmail built in browser. Deep link works fine if I open the web page containing the deep link in Chrome browser. My workflow is as…
7
votes
1 answer

What are the changes need for working deeplink in Android 12

The deep linking feature of my app was working fine with Android 11. But it is not working in Android 12. I checked and followed several StackOverflow posts and some other blogs. But I am getting the links unchecked in the app details If I manually…
7
votes
0 answers

Deep Link Doesn't Work on Instragram Story Swipe Up

I have a deep link to our Android app. The link is working correct when I click it on from Slack, Whatsapp, or something like these apps. But, It doesn't work on Instagram Story Swipe Up feature. It opens their browser when I swipe up and I see the…
7
votes
0 answers

Android deep link, open web browser when link not supported

I have created an intent-filter that uses this: and have registered a URL to open my app when clicked. This works as intended until I try and detect a link I do not support. Say I do some more…
6
votes
1 answer

Deep linking from Notification - how to pass data back up through the backstack?

In my app, the user can select a category, then select an item within that category to finally view the item details. The standard/forward flow is: SelectCategoryFragment -> SelectItemFragment -> ViewItemDetailsFragment On selecting a category,…
6
votes
1 answer

Deeplink isn't correctly redirect if the app is already opened

I'm using Jetpack Navigation for deeplinks. I've added android:launchMode="singleTask" to my Activity. Deeplink is redirected correctly if the app wasn't opened before. However, if the app exists in memory, the app is coming to the foreground but…
jakub
  • 3,576
  • 3
  • 29
  • 55
6
votes
2 answers

Deep Linking Android first opens the launcher activity (not the deeply linked activity )

Deep Linking Android first opens the launcher activity (not the deeply linked activity ) then the deeply linked activity as declared in Manifest file.I have followed all the steps mentioned here . viz. Manifest contains
Mohammad Khan
  • 571
  • 5
  • 13
5
votes
1 answer

Open Reset Password Link within Flutter mobile App

In my Flutter Mobile App authentication is handled by my own server API Currently I have an ask reset password feature in my mobile app which sends a reset password link to the user’s email inbox. This link opens a web page inside the user’s…
Aristidios
  • 1,921
  • 2
  • 13
  • 24
5
votes
1 answer

Using DeepLinks in Compose leads to inability to navigate backwards

I have a FirebaseMessagingService subclass that receives a notification payload and then creates a push notification with the following PendingIntent: TaskStackBuilder.create(this).run { addNextIntentWithParentStack( …
5
votes
1 answer

Deep Linking not working in React Native app on Android

I have setup my React Native app to use Deep Linking with expo-linking, but for some reason it just does not work on Android (yet to implement on iOS). Opening the link just opens it in the web browser, and doesn't open the app as it should. Any…
Tom
  • 213
  • 3
  • 12
5
votes
1 answer

Deep link and animation using Android Navigation component

I'm trying to implement a forgot password flow. What I'd like to do is to handle the received email, which contains a link to a forgot password web page, inside the app. Using the Navigation component I created a deep link, which opens the right…
5
votes
0 answers

How to prevent deep link loop (opening the mobile app again) from a browser redirect?

We have a mobile app and a web site. Users get emails with links to the pages in the web site. We use iOS universal linking and Android app linking to associate the mobile app with the web site. Lets say the link in the email is…
5
votes
0 answers

NavDeepLinkBuilder: deeplink to startDestination

What we try to achieve is when a user taps a notification, he/she should be redirected to a certain fragment. That destination fragment is marked as startDestination in the graph (it has its own .xml file). To create the PendinIntent for this, we…
SnuKies
  • 1,578
  • 1
  • 16
  • 37
5
votes
1 answer

Using Serializable as deep link argument with Android Navigation Component

Is it possible to use a custom Serializable object as a fragment argument when using deep links? I've tried the following - in my navigation graph XML file I've added following lines:
5
votes
2 answers

How to get the URI scheme of any app for AppLinks/universal linking?

I need to open a third-party app from my react native mobile app. I understand that this is called universal linking on iOS and AppLink on Android. I have done a lot of research for this, and I have been able to set up a link to the third party app…
MARS
  • 499
  • 1
  • 9
  • 25
1
2
3
21 22