Android Instant App深层链接

时间:2017-09-26 06:49:55

标签: android android-instant-apps android-8.0-oreo deeplink

我在功能模块中声明了以下功能。在移动设备中测试了即时应用程序,它运行成功。但是当我输入此网址时,它不会导致即时应用程序。从URL启动即时应用程序是什么程序。提前致谢

<data
   android:host="abc.cde.com"
   android:pathPattern="/hello"
   android:scheme="https"/>

1 个答案:

答案 0 :(得分:0)

取自Android即时应用code samples on GitHub

您想要解决的活动需要像这样的意图过滤器:

<intent-filter
        android:autoVerify="true"
        android:order="1">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT" />

    <data android:scheme="https" />
    <data android:scheme="http" />
    <data android:host="hello.instantappsample.com" />
    <data android:pathPrefix="/hello" />
</intent-filter>

主机和路径应与您要用作此即时应用程序功能的入口点的URL匹配。