在AndroidManifest.xml文件新增intent-filter
标签,如下:
<!--自定义scheme 用于调起APP -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Add optional android:host to distinguish your app
from others in case of conflicting scheme name -->
<data android:scheme="scheme" android:host="www.wodeyuming.com" />
<!-- <data android:scheme="sample" /> -->
</intent-filter>
测试Deeplink是否生效:
1.新建html文件
2.粘贴如下内容到html文件中
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,minimal-ui">
</head>
<html>
<input type="button" value="点击我打开Deeplink" onclick="javascrtpt:window.location.href='scheme://www.wodeyuming.com/'">
</html>
3.将html文件发送到安装了app的设备上,并使用浏览器打开,点击页面中按钮出现以下“即将离开浏览器前往第三方应用或页面”选项弹窗,表示配置成功!