Google移动视觉库11.8.0无法识别

这个问题在这里已经有了答案:

  • 无法解析com.google.android.gms play-services-auth:11.4.0 10个答案

  • 确保你的主build.gradle有谷歌maven回购

    repositories {
        google()
    }
    

    确保您的顶级build.gradle包含对google()回购或maven {url“https://maven.google.com”}的引用。

    像这样的东西 -

    allprojects {
        ...
    
        repositories {
            ...
            maven { url "https://maven.google.com" }
        }
    }
    
    链接地址: http://www.djcxy.com/p/85301.html

    上一篇: Google mobile vision library 11.8.0 is not recognized

    下一篇: notification manager doesn't work in Kitkat