Android应用中的应用链接:我是否可以仅链接主页?

时间:2018-03-22 17:56:52

标签: android applinks

对于所有人来说,这是一个有趣的问题。我似乎无法找到如何将我网站的主页链接到我的应用程序。我可以在iOS应用程序上执行此操作,只需定义" /"在我的AACS文件中,但其Android模拟正在逃避我的搜索。这可能吗?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:0)

我已经弄清楚了。我最初搜索得不够好。所以,这是我遇到的问题,这里是解决方案:在我的意图过滤器中,我有以下几行:

        <!-- Accepts URIs that begin with https://site_base_url/deep -->
        <data android:scheme="https"
              android:host="@string/site_base_url"
              android:pathPrefix="/deep" />

我一直在尝试将android:pathPrefix更改为"/",显然这不起作用,但我可以将pathPattern定义为"/"以实现我的目标无需担心排除其他URI路径。

        <!-- Accepts URIs that are only https://site_base_url/ -->
        <data android:scheme="https"
            android:host="@string/site_base_url"
            android:pathPattern="/" />