본문 바로가기


안드로이드

빌드시 --warning-mode all 경고 없애기

by aisi1004 2020. 10. 7.

빌드시 --warning-mode all  경고 없애기

 

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.

Use '--warning-mode all' to show the individual deprecation warnings.

See https://docs.gradle.org/6.1.1/userguide/command_line_interface.html#sec:command_line_warnings

BUILD SUCCESSFUL in 797ms

24 actionable tasks: 1 executed, 23 up-to-date

그냥 경고 메시지 정도로 생각하시면 됩니다.

Gradle 버전을 올려줘야 하지만 경고 메시지를 무시할 수 있습니다. 

Android Stuido - Preferences - Builde, Execution, Deployment - Compiler - Commend-line Options 에 

--warning-mode all 를 입력합니다. ok 합니다.

( 또는 --warning-mode=all --stacktrace 사용하면 stack trace 볼수 있습니다.)

 

그러면 경고없이 빌드가 됩니다.





댓글