React Native
喜樂的CC
前端劝退师
展开
-
react-native run-ios出现优化omo提示解决办法
升级xcode解决Found Xcode workspace MobileCRM.xcworkspaceCoreData: annotation: Failed to load optimized model at path '/Users/apple/Downloads/Xcode 2.app/Contents/Applications/Instruments.app/Contents/Frameworks/InstrumentsPackaging.framework/Versions/A/Resou原创 2023-02-13 15:04:51 · 445 阅读 · 0 评论 -
【react-native】android-studio的模拟器开启reload
android-studio的手机模拟器不会自动刷新热更新,本文教你如何reload原创 2023-02-13 11:23:55 · 570 阅读 · 0 评论 -
Print: Entry, “:CFBundleIdentifier“, Does Not Exist解决办法
Print: Entry, ":CFBundleIdentifier", Does Not Exist的正确解决办法原创 2023-02-09 14:00:23 · 913 阅读 · 0 评论 -
Could not find iPhone X simulator解决办法
场景: 在苹果开发者web平台下载手动安装xcode11.2.1, 启动项目Could not find iPhone X simulator错误原创 2023-02-08 09:57:22 · 333 阅读 · 0 评论 -
cocoapods安装失败到成功的记录贴
解决You don't have write permissions for the /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/gems/2.6.0 directory.原创 2023-02-01 14:16:31 · 1936 阅读 · 0 评论 -
mac安装nvm教程记录
You may be on a Mac, and need to install the Xcode Command Line Developer Tools.If so, run `xcode-select --install` and try again. If not, please report this!原创 2023-01-31 14:42:46 · 1206 阅读 · 0 评论 -
mac安装xcode
历史版本到官方下载, 请勿相信网络版本原创 2023-01-31 11:18:53 · 633 阅读 · 0 评论 -
Error: Activity class {com.awesomeproject/com.awesomeproject.MainActivity} does not exist 解决办法
启动rn失败的解决办法原创 2023-01-09 11:32:48 · 750 阅读 · 0 评论 -
[react native]1.FlexBox学习笔记
web端默认主轴(main axis)是X方向, 交叉轴(cross axis)是Y方向原创 2023-01-09 11:16:53 · 239 阅读 · 0 评论 -
react-native启动时红屏报错:Unable to load script.Make sure you‘re either running a metro server or that
react-native启动时红屏报错:Unable to load script.Make sure you're either running a metro server or that原创 2023-01-05 16:47:30 · 790 阅读 · 1 评论 -
Android创建AVD时出现no emulator installed和install haxm
Android创建AVD时出现no emulator installed和install haxm原创 2023-01-05 10:47:17 · 1331 阅读 · 1 评论 -
[React Native] 引用propTypes报错: Properties can only be defined on Objects
错误代码: importReact,{Component,PropTypes}from"react"报错如下:原因: react v15.5版本后PropTypes 就独立到了prop-types解决办法:importPropTypesfrom'prop-types';...原创 2019-09-05 17:14:19 · 631 阅读 · 0 评论 -
[React Native] 组件导入颜色灰色没有高亮报错not found for name ,make sure to start component names a capital letter
报错如下解决办法首字母一定要大写原创 2019-09-03 16:24:28 · 834 阅读 · 0 评论 -
Vs Code 之 调用 Android Studio模拟器 / Genymotion模拟器 教程
打开Android Studio模拟器步骤:第一种: 直接在Android Studio中一键启动虚拟机第二种: 首次需要查看虚拟机名称, 然后在Android\Sdk\tools目录下启动虚拟机(以后就不需要打开as再启动虚拟机)//Nexus_5X_API_29_x86是虚拟机名称D:\Android\Sdk\tools>emulator -avd Nexus_5...原创 2019-08-29 15:42:06 · 8171 阅读 · 0 评论 -
[React Native] vs code热更新/自动刷新/更新数据
上面是官方的图, 看不懂没关系, 解读如下:在虚拟设备上,按[ Ctrl + M ], 选择 Enable live Reload就是自动刷新了同理, 在虚拟设备上连按两下R就是手动刷新*tips: 真机摇晃下手机就会出现上图的选择菜单...原创 2019-08-28 18:46:40 · 6397 阅读 · 0 评论 -
[Error] 未能在 Android 中运行应用程序 (error code 104): 执行命令 react-native.cmd run-android --no-packager 时出错
起因: vs code启动模拟器的报错[Error] 未能在 Android 中运行应用程序 (error code 104)Stack: Error: 未能在 Android 中运行应用程序 (error code 104): 执行命令 react-native.cmd run-android --no-packager 时出错: 执行命令 react-native.cmd run-an...原创 2019-08-28 15:48:10 · 4144 阅读 · 0 评论 -
[Info] local.properties 文件不存在。请使用路径中的 Android SDK 位置的解决办法
起因: vs code启动模拟器的报错[Info] local.properties 文件不存在。请使用路径中的 Android SDK 位置。[Info] 正在启动 React Native 包生成工具。info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jeti...原创 2019-08-28 15:46:49 · 2830 阅读 · 0 评论 -
[React Native] VS Code 调用模拟器(虚拟机/仿真器)开发调试
目录前置条件启动模拟器检查进程是否存在VS Code 配置模拟器开发调试第一步第二步第三步配置常见报错解决方案报错1报错2前置条件启动模拟器因为 VS Code 自身无模拟器, 所以需要借助第三方模拟器,如Android Studio的模拟器, Genymotion的模拟器;不会调用模拟器的请点传送门>>>调用 Andr...原创 2019-08-28 15:41:24 · 13861 阅读 · 6 评论