Android深度链接无法与https一起使用

时间:2019-07-02 08:18:19

标签: android deep-linking

Android深度链接不适用于https ..但是可与http一起使用。

    <intent-filter>
        <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" />
        <data android:scheme="https" />
        <data android:host="www.myuzcard.uz" />

    </intent-filter>

2 个答案:

答案 0 :(得分:0)

我从github.com找到了一个解决方案。

<data android:scheme="https"
    android:host="myuzcard.uz"/>

刚刚删除了www。

答案 1 :(得分:0)

在代码中,您分别为方案 host 属性添加了标签。 您需要添加一次 标记,并添加方案 host 属性。在同一标签中。

这是一种有效的方法

方案主机属性。

<intent-filter>
    <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="www.myuzcard.uz" />

</intent-filter>