React Native Android崩溃-RNKeychainManager.setInternetCredentialsForServer得到了6个参数,预期为7

时间:2019-06-04 19:50:57

标签: android react-native react-native-keychain

在升级依赖项负载后,我在运行本机时在响应本机时遇到崩溃。它有一个问题,但没有特别的帮助:https://github.com/oblador/react-native-keychain/issues/205很难确定确切的复制步骤或原因。源代码(包括依赖项的代码)中没有任何内容表明此函数需要7个参数。与此同时,我停止了在Android上重新加载JS包的操作。

1 个答案:

答案 0 :(得分:0)

比起JS捆绑包无法加载的事实,更多可见的错误实际上在解决问题上的帮助要小得多。我通过在AndroidManifest.xml中的应用程序标签中添加属性来解决了这两个问题

<manifest ... >
    <...other tags />
    <application
      ...
+     android:usesCleartextTraffic="true"
      android:theme="@style/AppTheme">