我在挣扎于我的React Native应用程序..。在我更新我在react本机中使用的许多librairies之前,它过去是正确部署的,没有任何错误,但是现在我在Android & iOS上有了错误。
它适用于react-原生运行的android或Android Studio,但我发布的APK没有通过Google测试。
以下是错误(部分)的Google逻辑:
12-12 01:26:15.554: E/ReactNativeJS(13327):未定义不是一个对象(评估'e.length') 12-12 01:26:15.556: I/Dpps(892):int DppsFeatureAd3::AdCalcCalibParams(struct DppsAdCfgParam &)():445 calib_a 14,calib_c 0,calib_d 0 12-12 01:26:15.558: E/ReactNativeJS(13327):AppRegistry模块不是已注册的可调用模块(调用runApplication) 12-12 01:26:15.563: E/NetworkScheduler(11214):忽略陈旧队列检查消息12-12 01:26:15.563: E/NetworkScheduler(11214):-1201:26:15.564: E/AndroidRuntime(13327):Process: com.mdef.mymatchup,PID: 13327
这是我的package.json:
{
"name": "my-app",
"version": "1.1.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"release": "cd android && ./gradlew assembleRelease",
"installRelease": "cd android && ./gradlew installRelease",
"test": "jest"
},
"dependencies": {
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-transform-remove-console": "6.8.5",
"d3-interpolate": "1.1.5",
"es6-symbol": "3.1.1",
"lodash": "~4.11.2",
"lodash.range": "3.2.0",
"module-resolver": "1.0.0",
"native-base": "2.3.5",
"native-base-shoutem-theme": "0.1.0",
"prop-types": "15.5.10",
"react": "16.0.0",
"react-native": "0.51.0",
"react-native-communications": "2.2.1",
"react-native-datepicker": "1.6.0",
"react-native-fetch-blob": "0.10.8",
"react-native-firebase-analytics": "4.0.1",
"react-native-image-crop-picker": "0.18.1",
"react-native-sentry": "0.30.2",
"react-native-splash-screen": "3.0.6",
"react-native-svg": "6.0.0",
"react-native-vector-icons": "4.4.2",
"react-navigation": "1.0.0-beta.10",
"react-redux": "5.0.5",
"redux": "3.7.2",
"redux-persist": "5.2.2",
"redux-thunk": " 2.2.0",
"striptags": "file:patch/striptags",
"react-native-fcm-opsone": "file:patch/react-native-fcm"
},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "19.0.2",
"react-test-renderer": "~15.4.2"
},
"jest": {
"preset": "react-native"
},
"resolutions": {
"metro-bundler": "0.20.2",
"color-convert": "1.9.1",
"uglify-js": "github:alexlamsl/UglifyJS2#issue-2449"
}
}我试过这个问题的答案,但它什么也没做。React-Native: Module AppRegistry is not a registered callable module
有人也有同样的问题吗?已经三天了,我不知道该怎么办了.我需要帮助!
发布于 2017-12-14 08:56:25
问题解决了!我已经解决了我的问题,通过降级反应-原生从0.51.0到0.49.5,我没有更多的崩溃。
https://stackoverflow.com/questions/47769671
复制相似问题