327 questions
184
votes
14
answers
248k
views
Launch an app from within another (iPhone)
Is it possible to launch any arbitrary iPhone application from within another app?, For example in my application if I want the user to push a button and launch right into the Phone app (close the ...
79
votes
4
answers
119k
views
What are all the custom URL schemes supported by the Facebook iPhone app?
Note
These URL's are likely not available.
Facebook has been updated a number of times and did not officially support any of these.
/Note
I am trying to see what information is available about ...
77
votes
4
answers
94k
views
Android Deep linking: Use the same link for the app and the play store
I have a website which enables the user to make a search query. The query might take some time to complete (minutes to days), and I would like to enable the user to download an Android app and receive ...
30
votes
5
answers
39k
views
Custom URI Schemes for the Facebook Messenger
Given the recent "encouragement" by Facebook to migrate to a separate messenger app, and as a followup to the {very informative!} answer to the question on URL/URI schemes supported by the Facebook ...
6
votes
2
answers
2k
views
How AJAX is done in github source browse?
Github has a really nice source browser. Navigating between different paths in the repo generates ajax calls to load the content (as you can clearly see in the firebug log). The ajax call returns the ...
17
votes
0
answers
6k
views
Deeplink solution for IOS and Android apps works in Facebook
There are too much Deep Linking (Universal Links or App Links) tutorials. But most of them shows how to enable it in Android or IOS Apps. Also there are paid cloud solutions but they offer to much ...
17
votes
1
answer
32k
views
Deep linking not working in chrome
I am trying to do deep linking such that when someone opens a link from mobile browser, it either opens the app, if it is installed or opens the play store link to download the app.
Here is my URI :
...
109
votes
4
answers
62k
views
Android Deep Linking with multiple query parameters
I'm trying to deep link my app and have implemented the following in my AndroidManifest.xml to open the proper activity.
<activity
android:name=".ui.activities.MyActivity"
android:label="@...
80
votes
4
answers
52k
views
Deferred Deep Linking in iOS
We're trying to implement deferred deep linking in one of our iOS applications to encourage users to invite their friends to use the app, and reward users based on how many installs occur from their ...
79
votes
13
answers
99k
views
Deep-linking intent does not work
I followed the insttructions on https://developer.android.com/training/app-indexing/deep-linking.html, but when I want to trigger the intent through adb with:
adb shell am start
-W -a ...
17
votes
2
answers
11k
views
Universal Link broken in iOS 11.2
I am using Branch deep links in an app for sharing links to content in the app via social media. Everything was working fine quite a while.
When updating to iOS 11.2 I encountered the following ...
16
votes
4
answers
41k
views
App Link not opening in Android 12 by default. Possible SHA256 issue
I have set up my deeplink by uploading the assetlinks.json file here
https://example.com/.well-known/assetlinks.json
Its working well till Android 11. It also works in Android 12 if it's not ...
8
votes
1
answer
16k
views
How to use PathPattern in order to create DeepLink Apps Android?
I have read documentation about create an deeplink and use app linking service in android studio 3.0. its pretty simple and easy to understand, but I have little bit problem when my URL has no prefix ...
2
votes
3
answers
5k
views
Why full/long dynamic link is not getting retrieved/received?
I'm creating a deep/dynamic link following this github project.
Here's the link which is getting created: https://appcode.app.goo.gl/?link=http://example.com/-example&apn=com.abc.xxx&amv=16&...
1
vote
1
answer
4k
views
How do I automatically route when in Flutter from within main()?
I implemented a third-party "listener" in my Flutter ios app. I have two goals:
Whenever the listener receives an event, route to LandingPage;
Pass to LandingPage the values captured by ...
30
votes
7
answers
31k
views
Opening TestFlight app from another app and deep link to specific app
How do i find the scheme of another app and deep link to it from my own iOS app?
More specifically, I want to deep link to the Testflight app upon certain conditions (set by my code). I'm assuming ...
18
votes
5
answers
11k
views
When will the application receive a install_referrer with content utm_source=(not%20set)&utm_medium=(not%20set)?
I'm using instll_referrrer tracking the user installation. Recently, I found a lot of user send the refer utm_source=(not%20set)&utm_medium=(not%20set) to my server.
I searched this on Google, ...
14
votes
7
answers
24k
views
React Native open Facebook page
I've been trying to open Facebook page using React Native Linking API. It doesn't work for me. I do have Facebook app installed. Here is what I tried:
Linking.openURL('fb://page/<page_name>');
...
12
votes
3
answers
7k
views
How to write tests for deep links in Android?
I would like to write tests for Android app with deep link cases using UI testing framework (Espresso) - launch app using only ACTION_VIEW intent and check all views on opened screen.
But looks like ...
12
votes
5
answers
13k
views
Deep Links with AppDelegate and SceneDelegate
I am trying to implement deep links to navigate to posts on an app, it was an older project so I had to add the SceneDelegate class. The deep link implementation works only when the app is active or ...
7
votes
2
answers
3k
views
Ionic 4 Deeplink plugin return false route not matched
I am Implementing Deeplink in ionic 4 application. Application in getting launched but deeplink plugin always returns false;
app.routing.ts:
{
path: 'viewdiary/:id/public',
loadChildren: ()...
7
votes
1
answer
7k
views
Link to Safari "Add to Home Screen" from inside app?
My app has a custom URL scheme and can use deep linking to jump straight from a URL to some content. I'd love to replicate the behaviour in the recent Facebook Groups app, which allows the user to hit ...
2
votes
2
answers
7k
views
Make phone call on iPhone and take user back to app? (UIWebView does it)
I used this code to make phone call:
NSString *phoneNumber = [@"tel://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:...
2
votes
1
answer
4k
views
Digital Asset Link verified by Android Studio, but not pass in Google Play Console
I try to publish my Android instant app to Google Play;
I link the app, which is named helloinstantapp.instantapp.examples.chrisyttang.org to the domain https://csytang.github.io.
It has been ...
0
votes
3
answers
5k
views
How to implement iOS app link Facebook functionality in swift 3?
I have tried many ways to achieve this but failed.
I have to share info on facebook with a URL and when clicked on the url, it will redirect to my app's specific page.
step# 1
let content: ...
80
votes
14
answers
93k
views
Android app link not working in android 12 always opening in browser
I have hosted assetlinks file into our domain https://ourdomain/.well-known/assetlinks.json And also verified this using https://developers.google.com/digital-asset-links/tools/generator and from ...
79
votes
9
answers
39k
views
Deep linking and multiple app instances
I have implemented deep linking in my app. I added this intent filter in my manifest file, and the deep linking is working.
<intent-filter>
<action android:name="android.intent.action....
65
votes
12
answers
139k
views
Angular 9: Value at position X in the NgModule.imports is not a reference
I upgraded an Angular App from v8 to v9. The project imports a custom UI library using Angular 8 and moment.js.
When I build it:
It generates a warning:
WARNING in Entry point '@myLib/catalogue' ...
59
votes
5
answers
56k
views
How to open flutter application from url?
For example, i have case in my flutter app when user can recover his password.
In that case user will receive link on e-mail, and i want by clicking on that link, my flutter app will open, and route ...
36
votes
4
answers
26k
views
Android App link - Open a url from app in browser without triggering App Link
I have enabled App linking in my application. It works fine. But in my application there are some scenarios where i cannot handle the incoming url. In those cases i want to redirect that url to the ...
33
votes
3
answers
23k
views
Deep linking from Web to PWA (Standalone Version)
I have a web app that it can be installed as standalone application in the homescreen thanks to PWA standard.
When a user forget his password, a email is sent to him with a link to reset the password.
...
28
votes
5
answers
40k
views
Android Deep Linking issue ! How to use Custom Url scheme myapp://some_data
i have tried link1, link2,link3, link4, link5, link6
Here's everything described about DeepLinking
What i want is the custom uri myapp://some_data, opens the native application installed in the ...
26
votes
3
answers
40k
views
How to access and pass parameters to the modules of an Android Instant App
With normal installed apps it's possible to use the technique of Deep Linking in order to not only open a specific application from an URL but also to redirect it to a specific section/function such ...
23
votes
1
answer
14k
views
Android URI schemes vs App Links
Android App Links works only from Android 6.0, unlike Deep Links from Android 4.2 but what the difference in behavior and coding?
I read the documentation but did not see the difference.
Deep Links: ...
21
votes
5
answers
17k
views
Exclude few Urls from deeplinking
I could successfully implement deeplinking of app using following filter in the intent-filter in my Manifest:
<data android:host="myhost.com"
android:pathPrefix="/v"
android:scheme="...
20
votes
5
answers
18k
views
Universal link - The domain has some validation issue
Im working on universal link to open the application while tap the url. I am using https server and done all the steps from apple (Apple Doc). But the apple universal link validator show below error,
...
16
votes
2
answers
13k
views
Open deep link url when click on Fcm notification
I'm using Google's Fcm to send notification to my Android client
I want to open specific screen with Deep Link url eg. example://my.app/products
Here is endpoint to send notification using REST api
...
11
votes
5
answers
5k
views
Firebase Dynamic-Links is not working for different target in same project in iOS
Is the behaviour of Firebase Dynamic-Links is different for Android and iOS? How can I implement Firebase Dynamic-Links for the same project for a different target in iOS?
In Android, Firebase ...
10
votes
2
answers
19k
views
Android share deep link url using whatsapp and open my app when click deep link
I am sharing some data using whatsapp, and I want to open a specific activity in my app when user press deep link from whatsapp
I have the following schema
myapp://openapp?type=banner&id=10
...
10
votes
2
answers
33k
views
Google Chrome does not open application on Deep Link on Android
Google Chrome wouldn't launch my app on Deep Link, however, the app gets launched if I run it from Firefox. I use "onkat://" just as an example as I just want to get the app launched first.
Following ...
5
votes
2
answers
6k
views
Automating deep linking using android espresso
I want to write espresso scripts to test deep linking and have no idea how to begin with. Looking for solutions that'll help me get more idea, possibly step by step procedure on how to get started.
...
5
votes
2
answers
4k
views
CUDA: allocation of an array of structs inside a struct
I've these structs:
typedef struct neuron
{
float* weights;
int n_weights;
}Neuron;
typedef struct neurallayer
{
Neuron *neurons;
int n_neurons;
int act_function;
}NLayer;
"NLayer" struct can ...
4
votes
2
answers
11k
views
How to open a deep linking uri in Android?
For example, there is an uri example://activityone?foo=bar which can open up an application and launch one of the activity by this adb command
adb shell am start -W -a android.intent.action.VIEW -d "...
4
votes
2
answers
14k
views
Facebook deep linking with iOS app
I am using below code to post to Facebook. It is working perfectly but when i replace MY_URL with myapp://test_page// the post won't appear in Facebook timeline.
If i'm doing something wrong then ...
3
votes
1
answer
2k
views
Android Navigation Url Deep Link Back to Previous App
My app has just two destinations, FirstFragment and SecondFragment. I created an url Deep Link for the SecondFragment and it works fine.
What I want is, after I enter the SecondFragment from the Deep ...
2
votes
2
answers
4k
views
iOS Deep link callbacks not working when the app is closed
I'm using a deep linking in my application and using this code in my SceneDelegate to segue to a view controller.
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) ...
58
votes
4
answers
55k
views
Universal links on iOS vs. deep links (URL schemes)
As I'm reading, iOS 9 introduced Universal Links. In the "Support Universal Links" section in Apple's App Search Programming Guide, it says that this is not exactly like deep linking with URL schemes, ...
38
votes
2
answers
16k
views
Difference between Deep Links, Android App Links, Firebase Dynamic Links and App Indexing [closed]
Here is an explanation of using deep links in navigation component:
https://developer.android.com/guide/navigation/navigation-deep-link
It says:
An explicit deep link is a single instance of a ...
29
votes
5
answers
19k
views
Deep linking with authentication [closed]
I am building a mobile app with react-native and the react-navigation library for managing the navigation in my app. Right now, my app looks something like that:
App [SwitchNavigator]
Splash [...
29
votes
1
answer
7k
views
Mobile Safari Page unload/hide/blur for Deep Linking
I am looking for an event on mobile safari that will detect when the page has been hidden due to a redirect. I want to open my app directly if a user has it installed, then attempt facebook if it is ...