码迷,mamicode.com
首页 > 移动开发 > 详细

升级code11.3后遇到React Native启动报错的问题 getCurrentAppState:error 和 objectAtIndexedSubscript: 的解决方案

时间:2020-01-13 19:47:01      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:inf   修改   bool   升级   code   xcode   har   attr   闪退   

我的xcode打包闪退,尝试启动项目,遇到React Native启动报错的问题,原本的项目的是Xcode10的,现在我更新了我Xcode版本到Xcode11.

技术图片

 

 

 

 

报错为

Unknown argument type ‘__attribute__‘ in method -[RCTAppState getCurrentAppState:error:]. Extend RCTConvert to support this type.

这个BUG是Xcode.11引起的, 可以查看这个问题的提交记录,链接为:https://github.com/facebook/react-native/issues/25138

我们只需要找到 RCTModuleMethod.mm 这个文件

修改

static BOOL RCTParseUnused(const char **input)

{

  return RCTReadString(input, "__unused") ||

         RCTReadString(input, "__attribute__((__unused__))") ||

         RCTReadString(input, "__attribute__((unused))");

}

这个函数插入    RCTReadString(input, "__attribute__((__unused__))") ||   这行代码重新运行就行了。

技术图片

 

 

 

这样项目就能启动了,而且打包的app也不会报错和闪退了。

升级code11.3后遇到React Native启动报错的问题 getCurrentAppState:error 和 objectAtIndexedSubscript: 的解决方案

标签:inf   修改   bool   升级   code   xcode   har   attr   闪退   

原文地址:https://www.cnblogs.com/itgezhu/p/12188871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!