莫道桑榆晚,为霞尚满天。这篇文章主要讲述android 开发常见问题相关的知识,希望能为你提供帮助。
文章图片
指定版本 就OK了
路径: android/app/build.gradle
compile ("com.facebook.react:react-native:填你自己的RN版本") { force = true }
文章图片
这个问题看你的 rn 版本了 新版本 没有 index.android.js 旧的有这个
旧版本解决方法
1.首先手动在main下建立一个assets文件夹
2.然后cmd 进入项目的根目录下执行:
React-native bundle --platform Android --dev
false
--entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
3.在执行 react-native run-android;
新的版本
【android 开发常见问题】react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
注意了,新版本是编译index.js而不是index.android.js,因为react-native新版本已经没有index.android.js和index.ios.js两个文件了,只有一个index.js文件,所以要编译index.js
会发现 assets文件夹下多出两个文件
index.android.bundle index.android.bundle.meta
this._lazyCallableModules[e] is not a function. (In ‘this._lazyCallableModules[e]()‘, ‘this._lazyCallableModules[e]‘ is undefined)
文章图片
用Xcode 打开工程 搜索 RCTRootView 进入.m 文件
搜索 [selfbundleFinishedLoading:([_bridgebatchedBridge] ?:_bridge)];
改成
if(!_bridge.loading)
{
[selfbundleFinishedLoading:([_bridgebatchedBridge] ?:_bridge)];
}
推荐阅读
- 移动端自动化测试 -- appium 之Desired Capabilities与 定位控件
- Android 四大组件BroadcastReceiver 介绍
- Android recyclerview 只显示一行 宽度不适配
- Android视图动画集合AndoridViewAnimations
- Parallax Mapping
- Android App卡顿慢优化之解决内存抖动及内存泄漏
- Springboot使用JdbcTemplate RowMapper查询,直接返回实体列表
- XamarinAndroid组件教程RecylerView动画组件使用动画
- 避免踩坑(易盾安全老司机起底Android九大漏洞,附解决建议)