我对 React Native 和胜利原生图表完全陌生。我想为我的项目添加胜利原生图表。所以我按照这里的所有步骤 https://github.com/FormidableLabs/victory-native/blob/master/README.md
当我构建项目时,我收到了这个错误
Could not find method google() for arguments [] on repository
请不要将此标记为重复,因为我已经尝试了上述问题的所有解决方案。我也试过这个
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
allprojects {
repositories {
mavenLocal()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
google()
}
}
但我仍然收到错误消息。请帮我解决这个问题。