Questions tagged [android-deep-link]
327 questions
0
votes
0 answers
Even if app is installed, Deeplink go to install page
When I use deeplink in mobile chrome broswer,
Even though there's a phantom app installed on my mobile,
Occasionally, it will be taken to the app installation page.
how to fix it?
code
function build_url(path: string, params: URLSearchParams) {
…

DoHan_Kim
- 57
- 1
- 8
0
votes
1 answer
Android app links intent-filter with wildcard subdomain not verified
I have app links in my app for two subdomains.
Assetlinks.json is already placed in our host's well-known directory and returns proper json.
When I use the following intent-filter, everything works fine.
…

Dmitry Smolyaninov
- 2,159
- 1
- 18
- 32
0
votes
0 answers
Get value from deeplink parameter rather than dynamic link in android java
I made an application in which users can send links to their friends. With the link, I added some parameters, So when the user clicks on the link the page with the given parameter will open.
The deep link user sends to his friends is:
Intent…
0
votes
0 answers
Using Compose navigation with deeplink within LazyColumn
I've read the article about handling deeplinks with Compose,
but I didn't find anything for my use case - for navigation within LazyColumn.
I have the following main Composable which I want to make the root of the graph (I want it to be host for…

Ksenia
- 3,453
- 7
- 31
- 63
0
votes
2 answers
What's the use of "-c android.intent.category.BROWSABLE" for "adb shell am start"?
What's the different between
adb shell am start \
-a android.intent.action.VIEW \
-d https://www.airbnb.co.uk/rooms/48033927
and
adb shell am start \
-a android.intent.action.VIEW \
-c android.intent.category.BROWSABLE \
-d…

Elye
- 53,639
- 54
- 212
- 474
0
votes
1 answer
What is "Selection State"? Should it be Enabled?
As per the document, We can verify our deeplink intent using
adb shell pm get-app-links --user cur
E.g.
adb shell pm get-app-links --user cur com.airbnb.android
It will produce
com.airbnb.android:
ID:…

Elye
- 53,639
- 54
- 212
- 474
0
votes
0 answers
Return angular asset with content type application/json (Android deep link)
so i'm trying to enable deep links for my android app, my app is actually an angular app that uses ionic's capacitor.So i generated a assetlinks.json on https://developers.google.com/digital-asset-links/tools/generator and put it in my angular app…

yeet
- 33
- 4
0
votes
1 answer
How to configure web app fallback for instant app
I'm having an android app that is having an instant app version. My instant app can be launched & run without installation from deep link. This is how my deep domain assetlinks.json looks like:
[{
"relation":…

Dawid Zawada
- 41
- 4
0
votes
1 answer
Deeplinks only work when using a slash in Jetpack Navigation
I'm trying to use generator to generate elements in my AndroidManifest.xml
In one of the fragments in my nav_graph.xml, I added:
In the generated APK, the AndroidManifest.xml…

You Qi
- 8,353
- 8
- 50
- 68
0
votes
1 answer
How to add meta properties like image description and title to a deep link in Android
I know this can be achieved using Firebase Deep Linking, but I find it a bit too complicated with a custom domain, so I go with the regular one. But, I could not find how do I add an image, title and subtitle for it? Also, the URL will be dynamic…

Sambhav Khandelwal
- 3,585
- 2
- 7
- 38
0
votes
0 answers
Android deeplink navigation replaces current fragment in view and cannot navigate back
I have a NavigationView (Drawer) with 5 menus each pointing to 5 different fragments. Say Fragment A,B,C,D,E.
Now I want to navigate to fragment C on clicking a notification (Pending Intent)
This is my deepLink
return NavDeepLinkBuilder(this)
…

Vebito
- 154
- 1
- 10
0
votes
1 answer
Android deep link intent doesn't work on some devices
I have an app that listens for a deeplinks starting with example:// The app can be launched by scanning a QR code containing a deeplink.

Kenny Sexton
- 301
- 4
- 14
0
votes
1 answer
How to get Android deeplink data
After setting up an app for deep linking. by creating an activity to launch when the link is opened in the browser. How do I go about getting the link that the browser used to start the intent?
Let us say the app catches the URL:…

Bret Joseph
- 401
- 3
- 13
0
votes
0 answers
DeepLinkDispatch with different modules (libraries)
I'm trying to add DeepLinkDispatch library (by airbnb) in my project in order to handle deeplinks. The project has different modules and some links needs to be handled by Activity's in this modules.
As I have different flavors I would like to define…

pauminku
- 3,526
- 3
- 22
- 24
0
votes
0 answers
Send SMS with link to open Android mobile app
Our cloud application sends SMS reminders to about 50 people (not employees, not strangers, but known close associates). The reminder currently says something along the lines of "Reply Y or N".
Now we have a mobile app in Android that we are…

user3825344
- 60
- 5