I\'m trying to build my android project using gradle and circleCI, but I\'ve got this error :
* What went wrong: A problem occurred configuring root projec
On my side I got the same issue because I used the wrong order of repositories.
google() should be added before jcenter()
buildscript { repositories { google() jcenter() }