没有路径属性的Android深层链接无法正常工作

时间:2018-12-29 18:55:07

标签: android applinks android-deep-link

嗨,我正在我的应用程序内部创建两个深层链接。深层链接在没有path属性的情况下无法正常工作,但是一旦在其中添加path属性就可以正常工作。我的深层链接如下所示:

<activity android:name=".MainActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <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:host="abc.com"
            android:scheme="https" />
        <data
            android:host="abc.com"
            android:path="/care"
            android:scheme="https" />
    </intent-filter>
</activity>

在上面的代码中,与 abc.com“ 进行深度链接之前,除非我向其中添加路径属性,否则它不起作用。因此,如果我在第一个链接中添加“ android:path =” /“开工。但我不想将其添加到我的深层链接中,因为它会影响我剩余的深层链接。

0 个答案:

没有答案