cordova - How to capture url and open it on an android app? -


i newbee programing. trying bundle webrtc html5 site via crosswalk-project cross compatibility. site works on shareable links. meaning, ever clicks on link can join webrtc session.

i trying figure out how open our site links email, whatsapp etc our designated app. mean url mydomain.org/xyz123 should open our app.

please point me in right direction.

intent-filters friend.

<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:host="mydomain.org"                 android:scheme="https" /> </intent-filter> 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -