用HTTPS URL反应本机(Android)深度链接问题

时间:2019-03-29 16:00:09

标签: android react-native deep-linking

我正在使用http url在react native android app中设置深层链接。当我尝试从浏览器打开应用程序但未打开时。

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>

我希望应用程序可以打开。

1 个答案:

答案 0 :(得分: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>