使用https网址反应原生(Android)深层链接问题

问题描述 投票:0回答:1

我正在使用http url在本机安卓应用中设置深层链接。当我尝试从浏览器打开应用程序但它没有打开。

AndroidManifest.xml中

<intent-filter android:label="@string/app_name">
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data android:scheme="https"
              android:host="www.abc.com"  />
      </intent-filter>

我希望app应该是开放的。

android react-native deep-linking
1个回答
0
投票

如果您想同时支持http和https,可以试试这个:

<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.abc.com" />
</intent-filter>
© www.soinside.com 2019 - 2024. All rights reserved.