Today I created an (empty) Android app using the "react-native-firebase" and "native-base" packages. It works in debug mode, but in release mode crash occurs.
Steps to reproduce the problem:
Create a new app
react-native init BaseTest cd BaseTest
Install the "native-base"
npm install native-base --save react-native link
Install the "react-native-firebase"
https://rnfirebase.io/docs/v3.1.*/installation/initial-setup https://rnfirebase.io/docs/v3.1.*/installation/android
Generating Signed APK
https://facebook.github.io/react-native/docs/signed-apk-android.html
Build release and install
cd android gradlew assembleRelease adb install app-release.apk
I could not find the error. Does anyone have any ideas?