Google mobile vision library 11.8.0 is not recognized
This question already has an answer here:
确保你的主build.gradle
有谷歌maven回购
repositories {
google()
}
Make sure that your top-level build.gradle contains a reference to the google() repo or to maven { url "https://maven.google.com" }.
Something like this-
allprojects {
...
repositories {
...
maven { url "https://maven.google.com" }
}
}
链接地址: http://www.djcxy.com/p/85302.html