본문 바로가기

Android/TroubleShooting

[Android] build.gradle의 buildDir deprecated

728x90
반응형

오류

프로젝트 단위의 build.gradle에 들어가보니 다음과 같이 buildDir이 deprecated되어 있었다.

 

deprecated된 이유를 보니, gradle 버전을 8.x로 업그레이드하면서부터 

앱이 동작하는데 문제는 없었지만, deprecated된게 신경 쓰여서 대체하면 좋겠다고 생각했다.

 

 

해결책

다음 사이트를 보니 Project.buildDir는 deprecated되었고 Project.layout.buildDirectory로 replace된다고 하더라..

https://docs.gradle.org/current/userguide/upgrading_version_8.html#project_builddir

 

그리고 스택오버플로에서도 다음과 같은 정보가 있었다.

The recommended replacement for buildDir is layout.buildDirectory. This property provides a more flexible and consistent way to access the build directory.

 

즉,

 

buildDir를 layout.buildDirectory로 대체하면 된다.

 

 

참조

https://stackoverflow.com/questions/77564583/getting-rid-of-builddir-deprecation

https://stackoverflow.com/questions/77564583/getting-rid-of-builddir-deprecation

 

 

 

구독과 공감♡♡은 블로그 운영에 큰 힘이 됩니다!
긍정적인 댓글 남겨주시면 감사드리며,
보완해야 할 점이 있으면 댓글로 남겨주셔도 좋습니다!

728x90
반응형