无法解析配置':react-native-vector-icons:classpath'的所有文件

时间:2018-12-11 12:53:10

标签: react-native-vector-icons

我在尝试运行时遇到以下错误

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

3 个答案:

答案 0 :(得分: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",

答案 1 :(得分: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/"  }
            }
        }
    }
}

答案 2 :(得分:0)

  1. 尝试更新react-native-vector-icons。
  2. 如果您不想将类路径版本更新为2.2.3,而不是2.3。+