React Native Release Signed APK crash on app start

0

I have an issue with react native release APK.

The app run on debug mode but it crash immediately on release mode

Some Phone it will be installed but when i will run it then it crash immediately and some other phone it will not installed Here is my app like looking this...

When i installed this this apk show this message

here is my packege dependencies list

"dependencies": {
"axios": "^0.18.0",
"jwt-decode": "^2.2.0",
"native-base": "^2.12.1",
"react": "16.8.3",
"react-native": "0.59.8",
"react-native-awesome-alerts": "^1.2.0",
"react-native-elements": "^1.1.0",
"react-native-gesture-handler": "^1.2.1",
"react-native-maps": "^0.24.2",
"react-native-otp-inputs": "^3.0.2",
"react-native-picker-modal-view": "^1.2.2",
"react-native-swiper": "^1.5.14",
"react-native-vector-icons": "^6.4.2",
"react-navigation": "^3.9.2",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"

},

And my android/build.gradle file is -

buildscript {
ext {
    buildToolsVersion = "28.0.3"
    minSdkVersion = 16
    compileSdkVersion = 28
    targetSdkVersion = 28
    supportLibVersion = "28.0.0"
}
repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.3.1'
}

}

allprojects { repositories { mavenLocal() google() jcenter() maven { url "$rootDir/../node_modules/react-native/android" } } }

Kazi Rahamatullah

Posted 2019-05-23T17:17:03.303

Reputation: 1

No answers