当安装’react-native init AwesomeProject’时,我在运行’react-native run-android‘时遇到上述错误
Could not determine java version from '11.0.1'.
一个快速的谷歌建议我需要更新Gradle-wrapper中的distributionUrl.这样做后,我面临一个新的错误
Cannot add task 'wrapper' as a task with that name already exists.
它表明问题出在文件中:
/AwesomeProject/androID/build.gradle' line: 36
看起来像这样
task wrapper(type: Wrapper) { gradLeversion = '4.4' distributionUrl = distributionUrl.replace("bin", "all")}
我一直在试图弄清楚这是做什么的.奇怪的是,某些东西不能直接开箱即用.是否有人面临类似的问题?
解决方法:
你也可以更新
task wrapper(type: Wrapper) { gradLeversion = '4.4' distributionUrl = distributionUrl.replace("bin", "all")}
至
wrapper { gradLeversion = '4.4' distributionUrl = distributionUrl.replace("bin", "all")}
如
总结OverrIDing built-in tasks deprecated in 4.8 Now produces an error.
Attempting to replace a built-in task will produce an error similar to the following:
Cannot add task ‘wrapper’ as a task with that name already exists.
见任务的最后一段&特性:
https://docs.gradle.org/5.2.1/userguide/upgrading_version_4.html和自定义包装器任务:
https://docs.gradle.org/5.2.1/userguide/gradle_wrapper.html#customizing_wrapper
以上是内存溢出为你收集整理的android – 无法将任务’wrapper’添加为具有该名称的任务已存在全部内容,希望文章能够帮你解决android – 无法将任务’wrapper’添加为具有该名称的任务已存在所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)