我正在尝试运行我的本机应用程序。但是突然我收到此错误。 这是我的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'
}
}
我不知道如何解决或撤消此操作。谁能建议一些解决此问题的方法?