Questions tagged [deep-linking]

In the World Wide Web, deep linking is the usage of a hyperlink that is expressed as an absolute URL (i.e. http://example.com/path/page), vs. a relative one (i.e. /path/page). Deep links to other websites can be desired or not by the site the link points to.

In the World Wide Web, deep linking is the usage of a hyperlink that is expressed as an absolute URL (i.e. http://example.com/path/page), vs. a relative one (i.e. /path/page). Deep links to other websites can be desired or not by the site the link points to.

3278 questions
1
vote
1 answer

Best practise for testing Android Deep Links navigation into activities

I have an activity for holding a fragment. I created this for being able to run Deep Link to the profile. Also I pass PROFILE_ID as a query parameter. So the whole deep link looks this: "tigranes://home/profile?profileId=3545664". class…
burkinafaso3741
  • 1,000
  • 1
  • 10
  • 15
1
vote
2 answers

Deeplink with specific language

I am facing with a specific problem with deep link. I mean , for the universal Link I have something like https://www.website.com/LANGUAGE/dashboard/profile that means language can be /en/ /fr/ /de/ /it/ /es/ and more... The problem is I try in…
LikseN
  • 169
  • 1
  • 1
  • 7
1
vote
1 answer

How do you make Android redirect to a specific activity after pressing the email link?

I need my Android application to redirect to a specific activity upon pressing the email link using Firebase authentication. My application currently redirects to the launcher activity. I would like it to redirect to the profile activity but am…
1
vote
0 answers

How to open all UPI apps installed in phone inside Ionic App

I am integrating UPI payment in my Ionic App. I have injected WebIntent in the constructor of payment.ts and I call method upi() defined in payment.ts on Pay button click in payment.html upi method defination : upi(){ const options = { action :…
sachin rathod
  • 541
  • 1
  • 9
  • 23
1
vote
0 answers

React native using deep link after code push sync

I am working with React Native code push and deep link. They works fine. The problem is, when I click in deep link with token, like /tokenValidation/:token, will open the application in first screen, so redirect route to tokenValidation, and request…
1
vote
0 answers

react-native deep linking how to get the latest url

I know that we can get the url that opened that app using Linking.getInitialUrl() and also use Linking.addEventListener('url', handler) to get it when the app is in the background state. Unfortunately, there's no way to get the latest deep link url…
ryeballar
  • 29,658
  • 10
  • 65
  • 74
1
vote
1 answer

Handle deep links with multiple environments for the same app on iOs using react-native

I have a react-native app with multiple environments. Dev, prod, ... Which means that I have multiple 'copies' of the app installed on the phone App Dev, App Prod. These are under a different bundle identifier: com.myapp.dev com.myapp.prod I use…
1
vote
1 answer

How to track ASO performance (playstore, appstore)?

An app has many channels of marketing. Say you have following playstore / appstore ASO facebook marketing instagram (which is kinda hard to measure because they don't allow link except one in the profile) conversion from your website that prompts…
eugene
  • 39,839
  • 68
  • 255
  • 489
1
vote
1 answer

Deeplink on Chrome for Android not working properly

I having a problem to make an Apps Flyer OneLink to work properly on Android with Chrome browser. On any other browser everything works fine. The problem is, deeplink doesn't always open the app when I try open thru Chrome. Sometimes it work, but…
Fillipe Duoli
  • 1,200
  • 9
  • 17
1
vote
1 answer

How to add friend using branch.io deep linking in Android App

when i invite friend by sending link using branch.io,when a receiver click on link and install app and make account,he will automatically add in my friend list,How this is possible?
SAT
  • 11
  • 3
1
vote
0 answers

Force deeplinks to open externally (chrome custom tabs)

I want to force the usage of custom tabs in my app. Currently it loops as soon as I try to open the deeplinked URL with my app via the custom tabs.
Sebastian Schneider
  • 4,896
  • 3
  • 20
  • 47
1
vote
1 answer

How to resume to the launcher app from the deep link app on Android?

So I have two apps as described below: Merchant App User choose their desired items. User clicks on the checkout button. This will open the Payment App via deep link Payment App Payment App picks up the information passed by Merchant App and…
Naim Jamalludin
  • 195
  • 3
  • 16
1
vote
1 answer

How to identify if the user opened the link to the App store but did not install the app then but later in the future?

Is there any way to know if a user opened the link to your app on the app store from a universal link but did not install it at that time and after say 2-3 days later, installs the app from the app store itself instead of your link. Currently, when…
Amber K
  • 700
  • 1
  • 5
  • 20
1
vote
1 answer

How can we detect already uploaded app in app store by installing app in development?

I'm using adjust.com SDK and their attribution delegate and configured the tracker URL, my app is live on AppStore. What I'm trying to do is, I want to open my app installed on phone built with development/adhoc provisioning profile. So when I open…
1
vote
2 answers

Xcode 11 deeplink seems to be different since it does not call the function from AppDelegate

I was trying to work with the deeplinks in Xcode 11 and found that app is not calling func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool { return true } above function anymore…
Manish Singh
  • 310
  • 1
  • 5
  • 19
1 2 3
99
100