反応ネイティブ リリース APK に問題があります。
アプリはデバッグ モードで実行されますが、リリース モードですぐにクラッシュします
一部の電話はインストールされますが、実行するとすぐにクラッシュし、他の電話はインストールされません これが私のアプリです...
これが私のパッケージ依存関係リストです
"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-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"
},
そして、私の android/build.gradle ファイルは -
buildscript {
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
multiDexEnabled = true
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
}
}