Linked Questions
51 questions linked to/from How to implement my very own URI scheme on Android
-6 votes
2 answers
250 views
How to make a android app that can be used as a default program for opening certain kind of link? [duplicate]
I want to make an android app that can be used as a default application for opening a certain kind of link (like if I click http://facebook.com it will show me suggested app to open that link, browser ...
435 votes
16 answers
369k views
Launch custom android application from android browser
Can anybody please guide me regarding how to launch my android application from the android browser?
155 votes
2 answers
119k views
Android Respond To URL in Intent
I want my intent to be launched when the user goes to a certain url: for example, the android market does this with http://market.android.com/ urls. so does youtube. I want mine to do that too.
55 votes
4 answers
59k views
How to register some URL namespace (myapp://app.start/) for accessing your program by calling a URL in browser in Android OS?
So I want to create an Android app so it would be registered somewhere in android OS (or just would start on system start) and when phone user clicks on special button on a web page inside a web ...
35 votes
1 answer
35k views
Android App: How to read get parameters from a custom url scheme?
Basically, I have the same question described as in How to implement my very own URI scheme on Android The answer given there works for me. When the custom url is called MyUriActivity's methods ...
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 ...
24 votes
7 answers
45k views
Intent Filter to Launch My Activity when custom URI is clicked
I am trying to allow a URI to be registered to open up with my app. Like the PatternRepository on the Blackberry and the CFBundleURLName/CFBundleURLSchemes on the iPhone. How do I achieve the same ...
31 votes
3 answers
97k views
Android Custom URL to open App like in iOS
I can add a link to, for example, 'navigon://' on a website that, in iOS devices, will open up the Navigon app if it is installed. Is there a similar simple method to open an app from a website (...
17 votes
5 answers
23k views
scheme host not working on android lollipop, click on link to open app
I am using this piece of code to launch my app from a link. <activity android:name="com.example.myApp.myClass" android:label="@string/app_name" > <intent-filter> ...
15 votes
1 answer
38k views
How to launch app on click of url in android
Launch app when click on url if app installed on device. if app not installed on device, open playstore. <activity android:name=".ui.NewsCardActivity"> <intent-filter> ...
12 votes
4 answers
19k views
Android Custom URL Scheme Refuses To Work / How to Navigate Back to Android App After OAuth
edit, please see my 2nd answer below this question for a much more concise, and simple display of the problem I finally have hit my wits end. I'm working on a cross platform app (IOS and Android) ...
13 votes
2 answers
5k views
azure mobile app authentication external redirect url
I have created Azure Mobile App and I am following official docs for this. During Authentication part of the docs following is stated In the Allowed External Redirect URLs, enter ...
7 votes
3 answers
5k views
Open a Native AIR app via URL?
I'd like people to have the ability to launch a Native AIR app via URL. My AIR app would read some parameters on it and open to the correct state. So the use case would be someone would be browsing ...
3 votes
1 answer
24k views
Launch an exe from browser (Windows)
I need to launch an installed application from browser (not just IE). From this thread I understood that I need to implement asynchronous pluggable protocols and registering an application to uri ...
15 votes
4 answers
2k views
Using Google OAuth 2 on embedded Android-based device
We have an application for embedded Android-based device, it uses WebView and inside it we use Google OAuth 2 to login to the app. Unfortunately Google will soon block OAuth 2 inside WebView, and we ...