Android Studio에서 응용 프로그램을 빌드 할 때 문제가 발생합니다.Android Studio Build.Gradle Sync Error
The plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environment variable to xxxxxxx.
그것은 내가 버전과 동기화 프로젝트를 플러그인 수정 프로그램 요청 : 내 안드로이드 Studio를 시작 그것은 오류를 줄 때 나는 안드로이드 스튜디오 2.2 미리보기 (7)을 사용하고 있습니다. 필요한 모든 업데이트를 수행했지만 오류가 남아 있습니다. 이 문제에 관해 비슷한 질문을 읽었지 만 제 경우에는 적용되지 않습니다.
실용적인 솔루션을 제공해 주시겠습니까? 당신이 버전 모두 다운로드 25. 먼저 안드로이드 SDK 플랫폼 업데이트 및 안드로이드 SDK 플랫폼을 설치하고 도구를 구축하지 않은 것 같다 내 관찰 사항에 따라
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.mobileappdev.novarttech.sunshine"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha4'
compile 'com.android.support:design:23.3.0'
testCompile 'junit:junit:4.12'
}
다른 질문이 도움이 될 것으로 생각합니다. http://stackoverflow.com/questions/34572458/android-studio-2-0-plugin-is-too-old 최신 버전으로 업데이트하십시오. gradle 도구를 업데이트해야합니다. –