在安装 返回文章页面返回文章页面返回文章页面返回文章页面返回文章页面返回文章页面返回文章页面时,当我运行 react-native run-android
时,我得到这个错误:
Could not determine java version from '11.0.1'.
一个快速的谷歌建议我需要更新的 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")
}
我一直在想这是干什么用的。有些东西不能直接从盒子里拿出来,这看起来很奇怪。有人遇到过类似的问题吗?