添加 Android App Links

添加 Android App Links功能

介绍

Android App Links 是指将用户直接转到 Android 应用内特定内容的 HTTP 网址。Android App Links 可为您的应用带来更多流量,帮助您发现最常用的应用内容,并让用户更轻松地在已安装的应用中查找和分享内容。

一个简单的效果

//TODO 添加视频

我们在网页上输入:http://tobey-r1.github.io/tobey?23

然后效果如下:

Android配置

在Android studio编译器里面顶部的Tools里面的App Links Assistant里面就是给你的app添加link配置的步骤,包括最后的url测试。麻烦点在于如果自己只是研究且测试需要一个网页去支持和app的绑定,这就是下一个流程要说的。Android上面的配置就比较简单了,大概是这样的:

按照前面三个步骤来。

Add Url intent filters

这里pathPattern就是host之后的匹配内容了,对应上才能link到app上面去。

Add logic to handle the intent

就是接受外部网页传递的参数intent,data之类的(点击insert code会自动插入到页面上去):

kotlin 复制代码
// ATTENTION: This was auto-generated to handle app links.
        val appLinkIntent: Intent = intent
        val appLinkAction: String? = appLinkIntent.action
        val appLinkData: Uri? = appLinkIntent.data
        //简单打印下
        "数据$appLinkData".printLog()
        "action$appLinkAction".printLog()

Associate website

这步是关键:

生成的json文件保存到本地之后我们后面要把它放到网页的对应(.well-known)目录下,访问效果如下:

然后我们点击Link and Verify报错也没关系,因为目前网页上我们还没加上这个json文件呢。

需要你有一个GitHub账户即可,我们通过github提供的GitHub Pages功能自己建一个简单的静态链接,以下是我最终搞好的一个可以测试的github项目。静态网址是:https://tobey-r1.github.io/ 效果如下(网上随便找的一个模板):

对应的Digital Asset Links网址:https://tobey-r1.github.io/.well-known/assetlinks.json运行效果如下:

然后applink的测试只需要在浏览器里面输入:http://tobey-r1.github.io/tobeyxxx如下:

打开我创建的github仓库之后,大致如下:

开启pages步骤如下:

最终出现这个visit site说明成功

相关推荐
年小个大36 分钟前
优化App启动时间?startup-coroutine是什么?
性能优化·架构·kotlin
摆烂积极分子1 小时前
安卓开发学习-安卓版本
android·学习
n***26562 小时前
MySQL JSON数据类型全解析(JSON datatype and functions)
android·mysql·json
t***82112 小时前
mysql的主从配置
android·mysql·adb
YF02115 小时前
Frida如何稳定连接PC端跟Android手机端
android·mac·xposed
O***P5716 小时前
【MySQL】MySQL内置函数--日期函数字符串函数数学函数其他相关函数
android·mysql·adb
z***43846 小时前
MySQL-mysql zip安装包配置教程
android·mysql·adb
无心水6 小时前
【Python实战进阶】7、Python条件与循环实战详解:从基础语法到高级技巧
android·java·python·python列表推导式·python条件语句·python循环语句·python实战案例
g***78918 小时前
鸿蒙NEXT(五):鸿蒙版React Native架构浅析
android·前端·后端
Bervin1213813 小时前
Flutter Android环境的搭建
android·flutter