Failed to resolve: play-services-flags

后端 未结 3 680

Today, Android Studio stopped to sync properly due to configuration issues.

Could not resolve all files for configuration ‘:app:providerRepositoryDebu

3条回答
  •  盖世英雄少女心
    2020-12-15 18:18

    Fixed by changing order of repos in PROJECT build.grade:

    Instead of

    allprojects {
        repositories {
            jcenter()
            maven { url "https://maven.google.com" }
        }
    }
    

    put

    allprojects {
        repositories {
            maven { url "https://maven.google.com" }
            jcenter()
        }
    }
    

    I think someone suggested this but I don't see his answer anymore.

    Very strange issue.

提交回复
热议问题