Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find com.google.gms:google-services:4.1.0 [duplicate]

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?

like image 650
Niladree Avatar asked Dec 10 '18 14:12

Niladree


1 Answers

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.

like image 80
Vitaliy Pusan Avatar answered Sep 19 '22 18:09

Vitaliy Pusan