0

我正在尝试在 React Native 中实现深度链接功能,我遵循了 React Native 的官方文档,也遵循了React Navigation的文档。我已经更改了我的 AndroidManifest.xml 文件并根据文档添加了意图过滤器,如下所示:

    <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:host="app" android:scheme="demo"/>
</intent-filter>

还将 android:lunchMode 更改为android:launchMode="singleTask".

当我使用安装应用程序npx react-native android并且应用程序成功安装在用户设备上时。之后我运行 adb 命令来检查深度链接,我得到以下响应:

$ adb shell am start -W -a android.intent.action.VIEW -d "demo://app/chat/123" com.rndemo
Starting: Intent { act=android.intent.action.VIEW dat=app://whatsupp/chat/123 pkg=com.whatsupfire }
Warning: Activity not started, intent has been delivered to currently running top-most instance.
Status: ok
Activity: com.rndemo/.MainActivity
ThisTime: 0
TotalTime: 0
WaitTime: 19
Complete

这是我的链接配置:

const config = {
  screens: {
    Chat: {
      screen: {
        ChatStack: {
          path: 'chat/:id',
          parse: {
            toId: (id) => `${id}`,
          },
        },
      },
    },
  },
};

const linking = {
  prefixes: ['demo://', 'demo://app'],
  config: config,
};

我正在使用 React Navigation V5,我在 NavigatorContainer 的 App.js 中使用链接,这里要提到的重要一点是,我正在使用React Navigation的官方文档使用身份验证流程,并且聊天嵌套在导航器中,但我也尝试访问 demo://app 并且 adb shell 返回与上面相同的响应。

4

1 回答 1

0

将链接道具添加到 NavigationContainer:

<NavigationContainer linking={linking} >
于 2021-02-25T12:20:04.703 回答