Android Studio: Could not find com.android.tools.build:gradle:2.0.0-alpha2
Apparently the build tools have been moved from maven to jcenter so you need to change the code from: buildscript { repositories { mavenCentral() } dependencies { classpath ‘com.android.tools.build:gradle:2.0.0-alpha2’ } } to this buildscript { repositories { jcenter() } dependencies { classpath ‘com.android.tools.build:gradle:2.0.0-alpha2’ } } More details on the changes: Android Tools Project Site http://tools.android.com/recent … Read more