1

尝试运行时遇到以下错误

react-native run android

控制台指责:

  • 什么地方出了错:

配置项目“:react-native-vector-icons”时出现问题。

> 无法解析配置“:react-native-vector-icons:classpath”的所有文件。

> 找不到 com.android.tools.build:gradle:2.3.+ 的任何匹配项,因为没有可用的 com.android.tools.build:gradle 版本。

在以下位置搜索: https://jcenter.bintray.com/com/android/tools/build/gradle/maven-metadata.xml https://jcenter.bintray.com/com/android/tools/build/gradle /

要求:项目:react-native-vector-icons

4

3 回答 3

2

更改 react-native-vector-icons 的版本就可以了

我实际上在这篇文章中找到了答案:react native vector icons

通过更改 package.json 文件使其工作。

更改了行:

"react-native-vector-icons": "^5.0.0",

到:

"react-native-vector-icons": "^6.1.0",
于 2018-12-11T14:57:00.837 回答
0

在这里查看:https ://stackoverflow.com/a/53734791/8034839

尝试将此添加到您的build.gradle文件中。

subprojects {
    if (project.name.contains('react-native-vector-icons')) {
        buildscript {
            repositories {
                jcenter()
                maven { url "https://dl.bintray.com/android/android-tools/"  }
            }
        }
    }
}
于 2018-12-12T01:28:09.397 回答
0
  1. 尝试更新 react-native-vector-icons。
  2. 如果您不想将类路径版本更新为 2.2.3 而不是 2.3.+
于 2018-12-12T05:00:36.430 回答