Gradle 0.9.+/0.9.2 error: Unable to load class ‘com.android.builder.testing.api.DeviceProvider’

Per the latest in the bug report, the issue was that version 0.9.2 was being served from Maven central even though all the necessary components weren’t yet available (and gradle doesn’t register that as a problem). This breaks things because pieces are missing. Version 0.9.2 is now completely available and works, but if you’re seeing … Read more

Why am I getting “Received fatal alert: protocol_version” or “peer not authenticated” from Maven Central?

Solution 1: configure Java 7 It is need to enable TLS 1.2 protocol with Java property in the command line mvn -Dhttps.protocols=TLSv1.2 install install is just an example of a goal The same error for ant can be solved by this way java -Dhttps.protocols=TLSv1.2 -cp %ANT_HOME%/lib/ant-launcher.jar org.apache.tools.ant.launch.Launcher Solution 2: use Java 7 with Oracle Advanced … Read more