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
Reading sembozdemir answer in this post I have resolved a similar problem adding jcenter() in build.gradle (module: cordovaLib)
buildscript { repositories { mavenCentral() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' } }