react 积累
Posted zhengyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 积累相关的知识,希望对你有一定的参考价值。
1. Error:Execution failed for task ‘:app:processDebugResources‘
> java.io.IOException: Could not delete path C:UsersehsanandroidStudioProjectsMyApplication3app...
直观上看是没有删除某个文件,产生的IOException异常,实际上是因为上次编译导致的缓存没有清空导致的。
进入到android目录下运行下面代码清除上次打包时的缓存:
gradlew.bat clean
或者:
.gradlew clean
-----------------------------------------------------------------------------------------------------------------------------------------
2. React Native:The development server returned response error code: 404 || version mismatch
或 ::ffff:127.0.0.1 - - [15/May/2018:09:49:13 +0000] "GET /index.android.delta?platform=android&dev=true&minify=false HTTP/1.1" 404 79 "-" "okhttp/3.6.0"
解决方法:
打开android/app/build.gradle
compile ‘com.facebook.react:react-native:+‘
修改为:
compile ("com.facebook.react:react-native:0.47.1") { force = true }
0.47.1替换你自己的react-native版本号
新版本的gradle 不锁定react-natvie版本导致的
以上是关于react 积累的主要内容,如果未能解决你的问题,请参考以下文章
javascript 用于在节点#nodejs #javascript内设置react app的代码片段
[React Testing] Use Generated Data in Tests with tests-data-bot to Improve Test Maintainability(代码片段