build.gradle
のdependencies
にcompile 'com.squareup.retrofit2:retrofit:2.2.0'
を追加したら、エラーが発生した。
Error:(11, 0) Gradle DSL method not found: 'compile()'
Possible causes:
- The project 'xxxxxxxxxxx' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0).
Upgrade plugin to version 2.3.1 and sync project- The project 'xxxxxxxxxxx' may be using a version of Gradle that does not contain the method.
Open Gradle wrapper file- The build file may be missing a Gradle plugin.
Apply Gradle plugin
対応方法は、ルートにあるbuild.gradle
のdependencies
に記入しているcompile
行を
モジュールにあるbuild.gradle
のdependencies
に移動すればOK