[에러일지]Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.

박준석·2023년 2월 22일
0

에러일지

목록 보기
4/5
post-thumbnail

🤦‍♂️ Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.

문제점

안드로이드 스튜디오에서 release apk 생성 할 때 gradle 버전이 맞지 않아 일어나는 현상이다.

해결

  • 기존 명령어

    ./gradlew app:assembleRelease

  • 해결 명령어

    ./gradlew app:assembleRelease --warning-mode all

위와 같이 기존 명령어의 --warning-mode all을 추가시켜 명령어를 입력시키면 된다. --warning-mode all을 붙여주는 이유는 gradle버전이 맞지 않다는 경고를 무시하고 실행 하는 것이다.

profile
안녕하세요 프론트엔드 개발자입니다. 글을 이전 중입니다.

0개의 댓글