에러: The project is using an incompatible version (AGP 8.7.1) of the Android Gradle plugin. Latest supported version is AGP 8.6.0개발/Android Studio 에러2024. 10. 23. 21:45
Table of Contents
The project is using an incompatible version (AGP 8.7.1) of the Android Gradle plugin. Latest supported version is AGP 8.6.0
프로젝트가 지원되지 않는 Android Gradle Plugin(AGP) 버전 8.7.1을 사용 중이므로, 지원되는 최신 버전인 AGP 8.6.0으로 다운그레이드해야 한다.
해당하는 build.gradle로 가서 다음의 버전을 수정한다.
8.7.1 -> 8.6.0
dependencies {
classpath 'com.android.tools.build:gradle:8.6.0'
}
이를 수정하면서 AGP 버전도 Gradle 버전과 호환되는지 알아야 한다.
최신 AGP는 다음을 참고하자.
https://developer.android.com/reference/tools/gradle-api
Android에서 말하는 Stable한 조합은 다음 링크, 이미지를 참고하자.
https://developer.android.com/build/releases/gradle-plugin?hl=ko#updating-gradle
'개발 > Android Studio 에러' 카테고리의 다른 글
@스몰스테핑 :: 작은 발걸음
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!