Questions tagged [android-deep-link]

327 questions
0
votes
1 answer

Is there an intent to deep link into the Check for Software Update settings screen?

There doesn't appear to be an intent listed on https://developer.android.com/reference/android/provider/Settings for the Settings screen that checks for updates.
Sam J
  • 45
  • 6
0
votes
0 answers

Android deep linking issue with complex URL and question symbol

I'm trying to build a deep link integration for our client. The link is similar to this: https://example.com/en/user/login?destination=user/profile-edit . Now I know that a match with android:path would work but there are other language supported…
WWJD
  • 1,104
  • 4
  • 12
  • 31
0
votes
0 answers

NavDeepLinkBuilder on Android 12 real mobile cause crash

NavDeepLinkBuilder succeed At Android 9,10 but fail at Android 12 real mobile.Why? I would like to navigate from Activity to fragment so use NavDeepLinkBuilder because other method like findNavController or beginTransaction all…
Squall Huang
  • 647
  • 9
  • 20
0
votes
0 answers

Ionic Deeplinks doesn't enter either match or nomatch

I've been facing a problem with ionic deeplinks in android. It's doesn't enter either of the callback passed to subscribe. this.deeplinks.route({}).subscribe( (match) => { alert("MATCH"); }, (nomatch) => { alert("NO MATCH"); …
0
votes
1 answer

Android Deep Linking - Verify App links with website

I am trying to enable deep linking with my app I need when I scan the QR from outside my app like using QR Scanner app or using QR scanner in the system, and when I choose the web browser and search with the link, it directs to my app I added the…
0
votes
1 answer

How to pass safe args as bundle in android explicit deep link?

I am creating an explicit deep link in navigation component using safe args. PendingIntent pendingIntent = new NavDeepLinkBuilder(getApplicationContext()) .setGraph(R.navigation.mobile_navigation) …
0
votes
2 answers

Deep link is not opening the app from facebook post

I have added a deep link support in my app, and it works fine from gmail, messaging apps. But from facebook, it opens the browser and not the app.
dev90
  • 7,187
  • 15
  • 80
  • 153
0
votes
1 answer
0
votes
0 answers

Android. Deeplink not working with standard launch mode

I have main (launcher activity) with singleTask launch mode (e.g. A). I need this launch mode to handle deeplink. But when I fo from my main activity to another activity B and press to home button, when I launch my app is opening activity A, but…
0
votes
1 answer

AssetLinks file expected traffic and failure scenarios

I am working on setting up my Android app to work with HTTP Web Links according to the various guides and protocols and have successfully setup the deeplinks which includes serving my assetlinks file from /.well-known/assetlinks.json. Everything is…
amza
  • 780
  • 2
  • 7
  • 32
0
votes
1 answer

Navigation Component implicit deep link back press exits the app

I've an implicit deep link created just like mentioned in the docs. https://developer.android.com/guide/navigation/navigation-deep-link#implicit implicit - domain.com/ When I click on it, yhis opens a new instance of the activity, mentioned in the…
0
votes
0 answers

How do I expose children destination (Fragment/Dialog) to the Parent Graph of Navigation Component

I've multi-modules setup with Navigation Component with multiple navigation graphs which all have been included in the main app's navigation graph file. But when I try to navigate to one of the children within another module navigation graph this…
0
votes
0 answers

How to access parameter values in a deep link on a fyne android app?

I am working on a Fyne app that is to be compiled and installed as an Android app. The app allows a user to authenticate using oauth2. The authentication server returns the auth code back to the app in the url string as parameter values. I am able…
yebowhatsay
  • 182
  • 1
  • 7
0
votes
1 answer

open a fragment in a different level of hierarchy with backstack in Android Navigation component

I am using Navigation Component in my project and : I need to open a fragment in a different level of hierarchy, so that the back stack is created properly too in my nav_graph.xml there is a hierarchy like this: HomeFragment -> CollocationFragment…
0
votes
1 answer

android can the deeplink be used to open a regular class?

in android, it can setup the deeplink to launch an Activity when receives the push notification.
lannyf
  • 9,865
  • 12
  • 70
  • 152