我在Windows中的react native android中运行我的第一个应用程序时正在安装react native。我遇到错误
无法确定任务':app:preDebugBuild'的依赖关系。 >无法解决配置':app:debugRuntimeClasspath'的所有任务依赖关系。 >无法解析项目:react-native-default-preference。必填项:project:app>无法找到项目:react-native-default-preference的匹配配置:消耗品配置都没有属性。在本地反应
答案 0 :(得分:0)
您应该清除缓存,然后重试
RN < 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ &&
npm cache clean && npm install && npm start -- --reset-cache
RN >= 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* &&
rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm
install && npm start -- --reset-cache
npm >= 5 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ &&
npm cache verify && npm install && npm start -- --reset-cache
Windows - del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del
node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache
答案来自https://gist.github.com/jarretmoses/c2e4786fd342b3444f3bc6beff32098d