前言
要想从浏览器或者从其它APP中直接打开我们的APP,增加我们APP的曝光度,我们需要使用Android的深度链接技术Deep Links 或 App Links
Deep Links
这里先展示下Deep Links的效果
Deep Links实现
1. 在AndroidManifest中添加Intent Filters
下面的XML片段将链接这些URIs:
<activity ...>
<intent-filter>
<!-- action 和category 必须这样写!!! -->
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<!-- 接受以 "http://yaoyi.ypzdw.com/article" 或 "https://yaoyi.ypzdw.com/article"开头的URIs -->
<data android:scheme="http"/>
<data android:scheme="https"/>
<data android:host="yaoyi.ypzdw.com"/>
<!-- android:pathPrefix="/article" 这里表示匹配Path以“/article”开头的uri,可以不写-->
<data android:pathPrefix="/article"/>
<!-- 注意 "/" 在pathPrefix中是必须的-->
</intent-filter>
<intent-filter>
<!-- action 和category 必须这样写!!! -->
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<!-- 这里采用的是自定义Scheme -->
<!-- 接受以 "com.ypzdw.zdb://article"开头的URIs -->
<data
android:host="article"
android:scheme="com.ypzdw.zdb"/>
</intent-filter>
</activity>
一旦我们在AndroidManifest中添加了以上Intent Filters,Android就可以在运行时路由任何满足匹配条件的Intent
2. Activity中解析Intents
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Uri uri = getIntent().getData();
//Uri 规则: scheme://host+path?query
//这里以“https://yaoyi.ypzdw.com/article/413?type=url&from=web”为例
String scheme = uri.getScheme(); //https , "://" 这个前面的就表示scheme
String host = uri.getHost(); //yaoyi.ypzdw.com
String path = uri.getPath(); //article/413
String query = uri.getQuery(); //type=mobile&from=web
String type = uri.getQueryParameter("type"); //url
L.d(getTag(), "scheme = " + scheme + ", host = " + host + ", path = " + path + ", query = " + query+", type = " + type);
}
下面是打印的Log
测试Deep Links
$ adb shell am start \
-W -a android.intent.action.VIEW \
-d <URI> <PACKAGE>
例:
$ adb shell am start
-W -a android.intent.action.VIEW \
-d "com.ypzdw.zdb://article" com.ypzdw.yaoyi \
Deep Links 遇到的坑
scheme为htttp/https 开头的uri,在有的浏览器或者手机ROM中并不能链接至APP,而是在浏览器中打开了对应的链接。所以做Deep Links时建议全部采用自定义Scheme的形式。
在询问是否用APP打开对应的链接时,如果选择了“取消”并且“记住选择”被勾上,那么下次你再次想链接至APP时就不会有任何反应!!!
不同的host不要写在同一个Intent Filter中,最好为每种匹配规则新建一个Intent Filter
App Links
使用Deep Links 有时会让用户感到迷惑,因为会弹出一个对话框让用户选择是否在APP中打开。
Android在Android 6.0 (API level 23) 及以后加入了App Links , 当用户点击对应的URI 时,会直接启动对应的APP,不会再有对话框出现
App Links实现
1. 在AndroidManifest中添加Intent Filters
<activity ...>
<intent-filter android:autoVerify="true">
<!-- action 和category 必须这样写!!! -->
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="yaoyi.ypzdw.com" />
<data android:scheme="https" android:host="yaoyi.ypzdw.com" />
</intent-filter>
</activity>
这里的Intent Filter和Deep Links 有点像,但是要注意,这里的Scheme只能用 http/https或者两个都用,但是 不能使用自定义的scheme!不能使用自定义的scheme!不能使用自定义的scheme!重要的事说三遍
android:autoVerify="true" 这句会让APP自动在所列的host中去验证,如果验证成功,APP将成为匹配URI默认打开方式
2.配置 assetlinks.json
2.1生成assetlinks.json
你也可以访问https://developers.google.com/digital-asset-links/tools/generator ,然后填写host,包名,fingerprint,然后点击Generate Statement生成assetlinks.json
2.2 手动添加 assetlinks.json
如果你的梯子不够高,也没关系,可以手动添加assetlinks.json
我们需要改的就是 sha256_cert_fingerprints 和 package_name
格式如下:
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.example",
"sha256_cert_fingerprints":
["14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5"]
}
}]
这个json的命名必须为assetlinks.json!!! 之前看见有人说这个名字可以随便取为XXX.json,经验证这完全是行不通的!!!,这个名字必须是assetlinks.json!!! 此处省略3000字~
2.3 获取sha256_cert_fingerprints
$ keytool -list -v -keystore my-release-key.keystore
2.4 部署assetlinks.json
如上,我们的host为yaoyi.ypzdw.com,那么我们就需将assetlinks.json放到 https://yaoyi.ypzdw.com/.well-known/assetlinks.json
2.5 检查服务器上assetlinks.json是否可访问
还是在上面的链接里,填上该有的信息,然后点击 Test Statement
如果下面提示Success, 那么就可以访问,Android会在我们的APP启动后自动去访问这个地址,然后进行验证
你也可以通过访问下面来检查
https://digitalassetlinks.googleapis.com/v1/statements:list?source.web.site=https://<domain1>:<port>&relation=delegate_permission/common.handle_all_urls
如果成功将显示你配置的assetlinks.json内容
3.测试 web URI intent
adb shell am start -a android.intent.action.VIEW \
-c android.intent.category.BROWSABLE \
-d "http://<domain1>:<port>"
<port>端口为可选项
例
adb shell am start -a android.intent.action.VIEW \
-c android.intent.category.BROWSABLE \
-d "http://yaoyi.ypzdw.com"
4.Activity中解析Intents
这里和DeepLink是一样的
5.多域名情况
5.1 AndroidManifest
<activity ...>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="yaoyi.ypzdw.cn" />
<data android:scheme="https" android:host="yaoyi.ypzdw.com" />
</intent-filter>
</activity>
5.2 部署assetlinks.json
我们有几个域名,就需要部署几个assetlinks.json
如上,我们有两个域名,就需要把assetlinks.json部署在https://yaoyi.ypzdw.com/.well-known/assetlinks.json
和 http://yaoyi.ypzdw.cn/.well-known/assetlinks.json
假如有一个域名没有验证成功,那么App Link是不会生效的
路径格式如下
https://domain[:optional_port]/.well-known/assetlinks.json
6.多子域名情况
和多域名是类似的,假如我们的域名是yaoyi.ypzdw.com 和 mobile.ypzdw.com ,那么,我们必须部署assetlinks.json在 https://yaoyi.ypzdw.com/.well-known/assetlinks.json
和 https://mobile.ypzdw.com/.well-known/assetlinks.json
7. 多APP情况
如果多个APP都链接相同的域名,那么我们的assetlinks.json将这样写
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.example",
"sha256_cert_fingerprints":
["14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5"]
}
}
{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.example.another",
"sha256_cert_fingerprints":
["FF:15:CB:89:51:FD:8E:C9:5D:25:17:D2:2F:32:B6:12:19:09:12:B6:D9:BB:94:FC:37:CA:3A:48:A6:49:8C:9C"]
}
}]
8.检查link策略
adb shell dumpsys package domain-preferred-apps
--or--
adb shell dumpsys package d
注意:在你安装APP后至少等待20秒,这是为了让系统去完成验证(就是系统自动会去访问你App links配置的各域名的assetslinks,检查下是否存在该文件,并且里面fingerprints是否和你app的一致,注意,不同的签名,fingerprints是不一样的),如果验证成功,你的APP就会成为默认的URI启动项
你会得到类似下面的输出结果
Package: com.android.vending
Domains: play.google.com market.android.com
Status: always : 200000002
上面表示包名为“com.android.vending”的APP,会链接“play.google.com” 和“market.android.com”两个域名的URI
参考
Deep Links: https://developer.android.com/training/app-indexing/deep-linking.html
App Links: https://developer.android.com/training/app-links/index.html