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
Post a Comment