Android Studioのバージョンアップに伴うビルドエラー(The project is using an unsupported version...)
Android Studioをバージョンアップすると、バージョンアップ前に作成していたプロジェクトのビルドでエラーが発生することがあります。
これは、Android Studioのバージョンアップの際に、ビルドシステムのGradleもバージョンアップされているからです。
今回は、以下のようなエラーが発生した時の対処方法です。
【エラー】
■Messages Gradle Sync
Failed to sync Gradle project 'プロジェクト名'
Error:
The project is using an unsupported version of the Android Gradle plug-in(0.13.2). The recommended version is 1.0.1.
【対処】
gbuild.gradleを以下の通り修正します。
■修正前
dependencies {
classpath 'com.android.tools.build:gradle:0.13.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
■修正後
dependencies {
classpath 'com.android.tools.build:gradle:1.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
これは、Android Studioのバージョンアップの際に、ビルドシステムのGradleもバージョンアップされているからです。
今回は、以下のようなエラーが発生した時の対処方法です。
【エラー】
■Messages Gradle Sync
Failed to sync Gradle project 'プロジェクト名'
Error:
The project is using an unsupported version of the Android Gradle plug-in(0.13.2). The recommended version is 1.0.1.
【対処】
gbuild.gradleを以下の通り修正します。
■修正前
dependencies {
classpath 'com.android.tools.build:gradle:0.13.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
■修正後
dependencies {
classpath 'com.android.tools.build:gradle:1.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
コメント
コメントを投稿