gradleプロジェクトを開いてAPKファイルを作成しようとすると、
以下のエラーが発生。
Error:The versions of the Android Gradle plugin and Gradle are not compatible. Please do one of the following:
- Update your plugin to version 2.4. This will require changes to build.gradle due to API changes. Open migration guide
- Downgrade Gradle to version 3.5. Fix Gradle wrapper and re-import project
gradleとgradle Plugin(Android plugin for gradle)のバージョンに互換性がないと発生するエラーっぽい。
File -> Project Structure -> Projectでgradleのバージョンを確認すると、
gradleが4.1なのに対して
build.gradleファイルでは次のとおりPluginのバージョンが2.1となっていた。
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
}
gradle 4.1はgradle plugin 3.0.0以上が必要らしい。
build.gradleでプラグインのバージョンを書き直して「try again」をクリックすると
対象バージョンのプラグインを勝手にインストールしてビルドしてくれた。
こちらの記事を参考にさせていただきました。ありがとうございました。
https://qiita.com/izuki_y/items/3c20cd1c655fc4fc6127