java - How to launch android application from URL in android? -


can please tell me how open android application url in android.

i using following method open application in android doesn't works me.

<data android:scheme="application"/> 

i passing source of url "application://[randomtext]"

is correct way open application?

try this:

    <category android:name="android.intent.category.default" />     <category android:name="android.intent.category.browsable" />      <data android:host="www.put-your-website.com" />     <data android:scheme="https" />     <data android:scheme="http" />     <data android:pathpattern=".*" /> </intent-filter> 

Comments