我需要在扫描QR码时打开我的Android应用程序。
在QR码中有一个链接,其中包含一个用于打开应用程序的js脚本。
在我的Android Manifest中,我添加了intent
但是,当我访问该页面时,浏览器不会加载应用程序。我错过了什么?
机器人:
<!-- Test for URL scheme -->
<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="bbb" android:host="index"/>
</intent-filter>
<!-- End Test for URL scheme -->
Js(testLink.php)
<script>
window.location = 'bbb://index';
</script>
答案 0 :(得分:0)
尝试将window.location
设置为intent://index#Intent;scheme=bbb;end