본문 바로가기

Programming/기초지식

[Gradle] Could not find method compile() arguments~

반응형

Intellij를 통해 Gradle 프로젝트 생성 후 build.gradle에서 필요한 라이브러리를 설정했다. 프로젝트 refresh를 해보니 다음과 같은 에러 발생.

 

원인은 본인이 사용하는 Gradle 버전에 맞지 않는 라이브러리 설정 방식이었다.

Gradle 7.0버전 이상의 환경에서 개발할 경우 implementation을 사용해 라이브러리 설정을 진행해야 한다.

Gradle 7.0버전 이상에서는 compile은 더이상 사용되지 않는다.

 

확인 해보니 본인은 Gradle 7.1 버전을 사용중이었다.

 

The compile dependency configuration has been removed in the recently released Gradle 7.0, and is deprecated in earlier versions. Fortunately, the implementation dependency configuration provides the same functionality as compile.

 

implementation을 사용해 라이브러리 설정 후 다시 Reload 해보니 성공.

반응형