React Native包冲突:native-base x react-native-firebase

时间:2017-11-11 17:39:36

标签: android node.js firebase react-native native-base

今天我使用“react-native-firebase”和“native-base”软件包创建了一个(空的)Android应用程序。它在调试模式下工作,但在发布模式下发生崩溃。

重现问题的步骤:

  1. 制作新应用

    react-native init BaseTest
    
    cd BaseTest
    
  2. 安装“native-base”

    npm install native-base --save
    
    react-native link
    
  3. 安装“react-native-firebase”

    https://rnfirebase.io/docs/v3.1.*/installation/initial-setup
    
    https://rnfirebase.io/docs/v3.1.*/installation/android
    
  4. 生成已签名的APK

    https://facebook.github.io/react-native/docs/signed-apk-android.html
    
  5. 构建版本并安装

    cd android
    
    gradlew assembleRelease
    
    adb install app-release.apk
    
  6. 我找不到错误。有没有人有任何想法?enter image description here

1 个答案:

答案 0 :(得分:0)

嗨,我遇到了同样的问题,它确实引起了我的注意,但我设法解决了这个问题。所以不要运行

react-native link运行react-native link **native-base**.

我希望这会有所帮助。编码愉快:)