↧
Answer by Umar Ata for Failed to resolve: play-services-flags
Try below code in project build.gradlein dependencies tag classpath 'com.google.gms:google-services:4.0.1'and import repositories like belowallprojects { repositories { google() jcenter() }}in app...
View ArticleAnswer by vanste25 for Failed to resolve: play-services-flags
Fixed by changing order of repos in PROJECT build.grade:Instead ofallprojects { repositories { jcenter() maven { url "https://maven.google.com" } }}putallprojects { repositories { maven { url...
View ArticleAnswer by Denis Avguštin for Failed to resolve: play-services-flags
They were changing and deleting old libraries, I guess.I finally managed to get it working, by changing the order of repositories in project build.gradle: allprojects { repositories { google() maven {...
View ArticleFailed to resolve: play-services-flags
Today, Android Studio stopped to sync properly due to configuration issues.Could not resolve all files for configuration ‘:app:providerRepositoryDebugCompileClasspath’. Could not find...
View Article
More Pages to Explore .....