Questions tagged [android-deep-link]

327 questions
0
votes
2 answers

Android Deep link for friendly URLs

How would the deep link in the manifest be to open an activity with this link https://myapp.domain.com/#/view/abc where only abc is the argument that changes and is the one that I need the app to take as a parameter . I have tried this but it did…
0
votes
1 answer

How to create pinned shortcut with navigation components?

So I was following the article by Chet Haase. Article: https://medium.com/androiddevelopers/navigating-with-deep-links-910a4a6588c In this, he explains how to work with deep links with navigation components. The pinned shortcut builder needs an…
0
votes
1 answer

Android Google Assistant open my app with just app name

I saw Google Assistant codelabs and implemented open app via Google Assistant. I am using actions.intent.OPEN_APP_FEATURE intent, it is not working what i expected. For example, It works when i say "Hey google open myAppName…
nAkhmedov
  • 3,522
  • 4
  • 37
  • 72
0
votes
1 answer

Branch IO deep link always opens splash activity

I have integrated BranchIO in splash activity(i.e. The Launcher Activity). case 1: When the app is not in the background and I click on the deep link, SplashActivity is opened. (Works fine) case 2: When I am already logged in and put the app in the…
abhishek maharajpet
  • 482
  • 1
  • 4
  • 18
0
votes
1 answer

How to connect my android app to another app?

I am trying to connect my android app to another app. So far I am able to detect that if the app I want is installed or not on phone, if its installed, I can open that app. I need help with connecting that account to my app.(To connect, I need to…
buckyass
  • 1
  • 1
  • 3
0
votes
0 answers

Android Deeplink not working from notification

I'm attempting to trigger a specific tab to open with some data on notification press. The way the notification is setup is it open the root page if the user clicks the notification itself and a specific page if they click a button on the…
0
votes
1 answer

Android Deeplink URL endpoint handling

I want to open only particular endpoints of url in my app and rest in browser. I have following url endpoints: /users/sign_in - (should open in app) - working /users/password/edit - (should open in app) - working /users/invitation/accept - (should…
Dashesh
  • 308
  • 3
  • 11
0
votes
1 answer

deeplink sends incomplete serialized argument while using navigation component

I want to open a fragment using navigation component and deeplink. val serializedUser = Gson().toJson(user) findNavController().navigate(Uri.parse("myapp://?user=${serializedUser}")) but in destination fragment sometimes argument is not…
0
votes
2 answers

Deep Link opens wrong app (instant app, not installed app)

I'm running into an issue with deep links when having an instant app and an installed app (version). My setup is as follows: Base App (com.android.application) Installed App (com.android.dynamic-feature with dist:instant="false",…
0
votes
1 answer

Deeplinking with Navigation component with Individual Stack

I have two urls which falls under the same deep link like below : xxx.yyy.zzz/pages xxx.yyy.zzz/how-deeplinks-work-exactly Now the first one is a list of pages which goes to a fragment which lists the list of pages and second goes to a fragment…
0
votes
1 answer

Unable to recieve value of getquery parameter in Firebase Dynamic Links

I have to add an extra parameter as "meetingToken" in firebase deeplink . But On adding an extra parameter "meetingtoken" as queryparameter im not recieving the value and getting error in joinmeeting(it) : No value passed for parameter…
0
votes
1 answer

How to manage two different intent filter for android deeplink/applink?

I have already an intent filter for my applink/deeplink. Sample code :
ARUP BAROI
  • 11
  • 4
0
votes
0 answers

NavDeepLinkBuilder arguments bundle not received in destination fragment

I have 2 nav host activities Activity A and Activity B with each their own set of navigation graphs. I want to navigate from FragmentA which is in a nav graph hosted by Activity A to FragmentB which is in a nav graph hosted by Activity B to…
0
votes
1 answer

error: Error: No resource found that matches the given name (at 'label' with value '@string/title_gizmos')

I am following this tutorial: https://developer.android.com/training/app-links/deep-linking And I can't get it to work. This is the declared manifest:
0
votes
1 answer

Android deep link not working ERR_UNKNOWN_URL_SCHEME

I've placed a deep link in my manifest using (I think) the format from the documentation
andrewedgar
  • 797
  • 1
  • 12
  • 46