Android custom url from browser address bar not working

I have implemented a custom Android URl schema and it works great when I submit a link that I want to open as mail and then click on it.

It doesn't work when I type the same address into the address bar of my mobile browser, which in turn gives a page not found error. This is my filter design for the same -

 <intent-filter> 
     <action android:name="android.intent.action.VIEW" />
     <category android:name="android.intent.category.DEFAULT" />
     <category android:name="android.intent.category.BROWSABLE" />
     <data android:scheme="http" android:host="myappname.com"/>
 </intent-filter>

      

Is there anything else I need to point to to create http://myappname.com if I type it into a web browser. Is it so some phones / browsers don't support this behavior? Or is it not possible at all?

Any help would be appreciated. Thank you in advance.

+3
android intentfilter custom-url


source to share


No one has answered this question yet

See similar questions:

ten
OAuth and custom schema result in "ERR_UNKNOWN_URL_SCHEME" in Chrome

or similar:

1260
How can I open the url in the Android browser from my application?
837
How to hide title bar for Activity in XML with existing custom theme
707
Sending an intent to the browser to open a specific url
402
Launching custom android app from android browser
nine
Android: handle OAuth callback with intent filter
4
Fix android intentional filter config to associate file type with activity?
3
Open custom app by URL from browser address bar
1
Passing intent to another Android app
1
Android - try connecting to Dropbox API version 2
0
Intent Filter to open only android browser



All Articles
Loading...
X
Show
Funny
Dev
Pics