我是编程的新手。我试图通过crosswalk-project捆绑webrtc html5网站以实现交叉兼容性。我的网站适用于可共享的链接。意思是,谁点击链接可以加入webrtc会话。
我正在尝试弄清楚如何使用我们指定的应用程序从电子邮件,whatsapp等打开我们的网站链接。我的意思是任何带有mydomain.org/xyz123的网址都应该打开我们的应用程序。
请有人指出我正确的方向。
答案 0 :(得分:0)
intent-filters是你的朋友。
<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>