ReactNative Firebase Firestore在Android上崩溃

时间:2017-10-29 17:42:23

标签: android react-native google-cloud-firestore react-native-firebase

我正在尝试获取react-native-firebase并在Android应用中查询firestore数据库。但每当我尝试查询集合时,应用程序都会崩溃,并且描述性很强:

  

不幸的是,RNFirebaseStarter已停止。

这是直接从starter project发生的,使用the Todo app tutorial中的firestore查询代码。并且发生在Android模拟器和通过USB连接的设备上。

我找不到任何可以报告的错误。我怎么会开始调试这个?

跟进,here's a gist of the adb logcat output

2 个答案:

答案 0 :(得分:1)

你还有这个问题吗?您可以发布adb logcat的日志,以便我们可以查明实​​际错误吗?

由于

答案 1 :(得分:0)

in your android/app/build.gradle file set     multiDexEnabled true

    android {
  //..

  defaultConfig {
    //..
    multiDexEnabled true  // needed for firestore:
  }`enter code here`
  //..
}