React Native错误集* What went wrong: Execution failed for task ':app:installDebug'.
Posted Mr.Landen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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获取引用的是老的代码。
错误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'.的主要内容,如果未能解决你的问题,请参考以下文章