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

时间:2019-06-20 17:09:28

标签: react-native react-native-android

我正在尝试运行我的本机应用程序。但是突然我收到此错误。 这是我的build.gradle:

    buildscript {
    repositories {
        jcenter()
        google()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        google()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }

    }
}

此外,这是react-native-svg / androdi项目中的build.gradle文件:

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        //noinspection GradleDependency
        classpath 'com.android.tools.build:gradle:2.2.3'
    }
}

我不知道如何解决或撤消此操作。谁能建议一些解决此问题的方法?

0 个答案:

没有答案