Linked Questions
122 questions linked to/from Launch custom android application from android browser
0 votes
1 answer
553 views
how to show my app in list of browsers on click of a link in Android? [duplicate]
Possible Duplicate: Launch custom android application from android browser When a user clicks on a link, I want my app to show up in the list of browsers in which he can open the app. What should ...
0 votes
1 answer
214 views
Android, Launcher/open 3rd party native App from Webbrowser (Whatapps, Line, Facebbok, Viber) [duplicate]
Is there a way you can Launcher a App that is installed on Android from the web browser ? In my website I want to add two button, whatapps and Facebook. When the user click on them. it will load the ...
278 votes
25 answers
253k views
Adding a splash screen to Flutter apps
How would you approach adding a splash screen to Flutter apps? It should load and display before any other content. Currently, there is a brief flash of color before the Scaffold(home:X) widget loads.
246 votes
10 answers
289k views
Make a link in the Android browser start up my app?
Is it possible to make a link such as: <a href="anton://useful_info_for_anton_app">click me!</a> cause my Anton app to start up? I know that this works for the Android Market app with ...
189 votes
5 answers
216k views
How to implement my very own URI scheme on Android
Say I want to define that an URI such as: myapp://path/to/what/i/want?d=This%20is%20a%20test must be handled by my own application, or service. Notice that the scheme is "myapp" and not "http", or "...
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.
38 votes
3 answers
37k views
"Exported activity does not require permission" when attempting to launch from a URI
I am trying to launch an Android app from a URI using this SO question as a reference. I have a manifest file with the following declared activity: <activity android:name=".MainActivity"> ...
38 votes
4 answers
49k views
Open Android app from URL using intent-filter not working
I have an Android app that people use as a replacement for a website. Hence, when users encounter an URL to the website, I want to give them the option to "open the URL" in my app instead of in the ...
33 votes
3 answers
40k views
Launching custom Android application from Android browser / Chrome
First of all, my question is extremely similar to this, this and this. The Android documentation for what I'm trying to achieve is here. I couldn't get this to work using these resources so please don'...
32 votes
4 answers
92k views
Open android application from a web page
I know that for opening android application from a link inside a web page we have to write the following in the AndroidManifest.xml: <intent-filter> <action android:name="...
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 ...
15 votes
5 answers
73k views
Detect if Android app has been installed on the device using a mobile web page - PHP and JS
I have a requirement like this and something similar to that has been implemented by Android Pit app-store. I need to check if the Android app has been installed on the device using a mobile web page ...
31 votes
5 answers
88k views
How to open a native iOS app from a web app
Summary I have an app with a correctly functioning URL scheme that I'd like to launch from a web app stored on the home screen, and the normal JavaScript redirect methods don't seem to work. Details ...
17 votes
1 answer
21k views
Launch android application from a browser link
I have a problem trying to launch my application from the browser using my own scheme. Code is as follow: Manifest file: <activity android:name=".MainActivity" android:label="@...
7 votes
4 answers
8k views
Intent-filter not working from browser
I'm using an Activity with an intent filter similar to the one described here to be able to intercept clicks in the browser and give the user the option to open the my app instead. Here's the code ...