React Native错误集* What went wrong: Execution failed for task ':app:installDebug'.

提兵百万西湖上,立马吴山第一峰!这篇文章主要讲述React Native错误集* What went wrong: Execution failed for task ' :app:installDebug' .相关的知识,希望能为你提供帮助。
错误1:* What went wrong:
Execution failed for task \':app:installDebug\'.
> com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: INSTALL_FAILED_INSUFFICIENT_STORAGE
解决1:内存不足导致,删除模拟器或真机中其他不用的应用程序,释放空间。
 
错误2:the development server returned response error code:500
解决2:一般Body:中都有错误提示,正常情况下都是引用了不存在的文件(删除库不干净导致的),如果删除引用之后,还继续报一下错误,尝试关闭终端,重新运行,因为load获取引用的是老的代码。

React Native错误集* What went wrong: Execution failed for task ':app:installDebug'.

文章图片

错误3、Warning: Each child in a list should have a unique “key” prop.
解决方法;基本都是因为在循环生成多个组件的时候,没有给组件加上key引起的,因为dom进行diff对比 没有key值,所以报错警告。
 
错误4、Possible Unhandled Promise Rejection (id: 0)
解决方法:catch就好了。promise就全了。就能正常读取到值了
【React Native错误集* What went wrong: Execution failed for task ' :app:installDebug' .】 

    推荐阅读