Error:(1, 0) Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environment variable to "f4a0bcdad02706f1af97b485d6a6a0c5e7d9a560". Fix plugin version and sync project
のAndroid Gradleではエラーがbuild.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.app.xxxxxx"
minSdkVersion 15
targetSdkVersion 21
versionCode 2
versionName "2.0"
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
signingConfig signingConfigs.config
debuggable true
jniDebuggable false
minifyEnabled false
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.0'
compile 'com.android.support:recyclerview-v7:21.0.+'
}
が、私のクラスパスには、それはうれしいです –
'com.android.tools.build:gradle:2.2.0-alpha1' クラスパス..ですあなたにだけAPPCOMPATとrecyclerviewを更新することができます答えは –