Linked Questions
51 questions linked to/from How to implement my very own URI scheme on Android
6 votes
1 answer
5k views
Launch Activity From URL
I am trying to have my application launch when the user browses to a certain url. I have found a few examples and they all have the same things in the manifests but it's not working for me. I have put ...
5 votes
1 answer
3k views
Null query parameter from deeplink
I have implemented deep linking into my android application, Everything is working fine except for getting query parameters from the URL. I am following the instructions at this link to get ...
8 votes
2 answers
18k views
How to launch android application from URL in android?
Can anybody please tell me how to open android application from URL in android. I am using following method to open application in android but it doesn't works for me. <data android:scheme="...
6 votes
2 answers
8k views
Redirect Android webview with intent filter
I have a specific URL that I want redirected to a specific activity in my app from a webview with an intent filter. How to implement my very own URI scheme on Android described how to do this for a ...
4 votes
3 answers
4k views
how to launch windows phone app via browser url
I am new to windows phone app development. Is it possible to open windows phone app via browser url. If possible, please someone help me. How to implement my very own URI scheme on Android please ...
2 votes
2 answers
2k views
IBM Worklight - How to launch another app?
I have a requirement to open the native version of the hybrid app (.ipa/.apk/.appx) when the hybrid app is requested in a device browser. I am able to detect the environment using WL.Client....
0 votes
2 answers
5k views
Android WebView with custom protocol
I have a problem with implementing user authentification in a WebView. As API Docs say, I need to load URL "http://example.com/?key=abc" then User enters his login & password and then he's ...
1 vote
2 answers
3k views
Are custom URL schemes secure?
Suppose a user forgot their password and requested an email link to reset it. The email could contain a URI link to reset their password. If this is a URI for a register URI scheme in Android or iOS, ...
1 vote
1 answer
4k views
How to use intents for Android custom URL schema?
Basically I have the same question as described in How to implement my very own URI scheme on Android I followed the instructions from the answered questions and added to my android manifest: <...
1 vote
1 answer
5k views
facebook example deep link
i am trying to create a deep link for my app on facebook. All their examples have been written by people who like words a lot. If my app url is a.b.c and the app is called c what do i put in the ...
1 vote
1 answer
4k views
Android url schema to open the application
I want to open the application when user enter a url. I saw this for an application. For example, if some one enter this url in the browser, a dialog opens and ask user to open the application or ...
1 vote
1 answer
3k views
Adobe Flex Mobile 4.6 - Launching app from browser
I'm trying to start development on a Flex Mobile app that my company is developing in Adobe AIR (using Flash Builder). The app will initially be released for iPhone and Android, and eventually ...
1 vote
2 answers
2k views
Can't launch Android application from within an SMS - Android browser always take the task
I would like my application to launch when the user clicks on a link, for example, http://myapp.comwhich is embedded in an SMS message. I have followed this [solution] but it doesn't work for me. The ...
0 votes
2 answers
1k views
Opening the android app using a deep link
My requirement is, There is an advertisement in an email for a shoe, if I click on that ad, it should open my app directly and take me to corresponding page without asking any available option like ...
0 votes
1 answer
681 views
Open Android App with custom URL from PDF file
I wish to let my Andorid App handle custom URLs like shown in this question:How to implement own URI scheme. <activity android:name="MyActivity" android:configChanges="screenSize" ...