Is there a way to reset the default gradle and plugin without reloading all my settings, so I will not have these errors when creating new projects?
Error: the plugin is too old, upgrade it to a later version or set the ANDROID_DAILY_OVERRIDE environment variable to


So, at the top level of build.gradle, I upgrade to:
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha6'
}


And then change gradle to 2.10 as required here.
2.0.0-alpha5 (2016/1/14) // hence alpha6 Needs gradle 2.10 to work

source
share