Google mobile vision library 11.8.0 is not recognized

This question already has an answer here:

  • Failed to resolve com.google.android.gms play-services-auth:11.4.0 10 answers

  • 确保你的主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

    上一篇: 通过Android Studio合并Dex问题

    下一篇: Google移动视觉库11.8.0无法识别