Bitrise build is failing with the following error:
A problem occurred configuring root project 'src'.
Could not resolve all files for configuration ':classpath'. Could not find com.google.gms:google-services:4.1.0. Searched in the following locations: https://dl.google.com/dl/android/maven2/com/google/gms/google-services/4.1.0/google-services-4.1.0.pom https://dl.google.com/dl/android/maven2/com/google/gms/google-services/4.1.0/google-services-4.1.0.jar https://jcenter.bintray.com/com/google/gms/google-services/4.1.0/google-services-4.1.0.pom https://jcenter.bintray.com/com/google/gms/google-services/4.1.0/google-services-4.1.0.jar Required by: project :
I know the alternative temporary solution of using maven. But do anyone know why the problem is happening suddenly and a permanent solution?
Fixed by adding this to repositories:
maven { url "https://dl.bintray.com/android/android-tools" }
https:// prefix is important, otherwise it could use address as relative path on your build machine.
For now, I've just added:
maven { url 'https://dl.bintray.com/android/android-tools' }
under repositories and the build have passed. Thanks to David Sucharda for the solution. As mentioned in other posts this solution is a temporary fix till we know what happened to the google() and jcenter() resources.
来源:https://stackoverflow.com/questions/53708030/could-not-find-com-google-gmsgoogle-services4-1-0