Gives an error: Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE envrinment variable to...
As I understand it, you need to update Gradle , but for me it was a black box, as with the help of the studio I did not try to fix it, and nothing helped.
Gradle himself:
apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.3" defaultConfig { applicationId "com.asgard.power" minSdkVersion 15 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:24.0.0-alpha1' compile 'com.android.support:design:24.0.0-alpha1' compile 'com.android.support:recyclerview-v7:24.0.0-alpha1' compile 'com.android.support:cardview-v7:24.0.0-alpha1' } How to deal with this?