본문

[2018.07.22] 09. Android Studio - Configuration on demand

문제점

Android Studio에서 build 시, 다음과 같은 오류가 발생할 경우가 있다.

Configuration on demand is  not supported by the current version ...


원인

원인은 오류 내용에서 알 수 있듯이 현재 Gradle plugin이 Configuration on demand를 지원하지 않는 경우이다.

Configuration on demand 개념

(출처 - https://docs.gradle.org/current/userguide/multi_project_builds.html#sec:configuration_on_demand)


Configuration on demand 기능을 사용하므로 멀티 프로젝트의 빌드 시간을 줄일 수 있다. 그러나, 모든 빌드가 잘 동작하는 것을 보장하는 것은 아니라고 한다.


해결책

해결책은 오류 문구에 있는 것처럼 configuration on demand 설정을 false로 처리하는 것이다.

configuration on demand 체크 해지 후 다시 빌드



#Configuration on demand

공유

댓글