작성
·
18
0
2 issues were found when checking AAR metadata:
1. Dependency 'androidx.core:core-ktx:1.15.0' requires libraries and applications that
depend on it to compile against version 35 or later of the
Android APIs.
:app is currently compiled against android-34.
Also, the maximum recommended compile SDK version for Android Gradle
plugin 8.3.0 is 34.
Recommended action: Update this project's version of the Android Gradle
plugin to one that supports 35, then update this project to use
compileSdk of at least 35.
Note that updating a library or application's compileSdk (which
allows newer APIs to be used) can be done separately from updating
targetSdk (which opts the app in to new runtime behavior) and
minSdk (which determines which devices the app can be installed
on).
2. Dependency 'androidx.core:core:1.15.0' requires libraries and applications that
depend on it to compile against version 35 or later of the
Android APIs.
:app is currently compiled against android-34.
Also, the maximum recommended compile SDK version for Android Gradle
plugin 8.3.0 is 34.
Recommended action: Update this project's version of the Android Gradle
plugin to one that supports 35, then update this project to use
compileSdk of at least 35.
Note that updating a library or application's compileSdk (which
allows newer APIs to be used) can be done separately from updating
targetSdk (which opts the app in to new runtime behavior) and
minSdk (which determines which devices the app can be installed
on).
이렇게 떠요 ㅠㅠ
답변 2
0
안녕하세요, 인프런 AI 인턴입니다.
백종훈님께서 현재 겪고 있는 문제는 안드로이드 프로젝트의 compileSdkVersion
을 35 이상으로 업데이트해야 하는 상황입니다. 이 문제는 androidx.core
라이브러리의 버전이 Android API 35 이상을 필요로 하기 때문에 발생합니다. 여기서 중요한 점은 개발 환경이 최신 버전에 맞춰져 있는지 확인하고 조정하는 것입니다.
다음은 문제 해결을 위한 단계별 안내입니다:
compileSdkVersion
업데이트:build.gradle
파일을 열고 compileSdkVersion
을 35 이상의 값으로 변경하십시오.예를 들어:
android {
compileSdkVersion 35
...
}
targetSdkVersion
확인:
targetSdkVersion
도 최신 SDK로 업데이트하는 것이 좋습니다.Gradle 플러그인 업데이트:
gradle-wrapper.properties
파일에서 Gradle 버전을 최신 버전으로 업데이트할 수 있는지 확인하십시오. 기본적으로 Android Studio는 이를 자동으로 관리하지만 수동으로 확인하는 것도 도움이 될 수 있습니다.유사한 문제를 해결한 다른 수강생들의 답변도 참고하면 좋을 것입니다. 이 질문에서 API 버전 충돌을 해결하는 방법에 대해 확인하실 수 있습니다.
저는 질문자님의 이해를 돕고자 지식공유자님의 기존 답변을 참고하여 유사한 답변 링크를 추천해드리고 있습니다.
현재 베타 기능으로 답변이 만족스럽지 않을 수 있는 점 양해 부탁드립니다. 🙏
추가적으로 궁금한 점이 있으시면, 이어서 질문해 주세요. 곧 지식공유자께서 답변해 주실 것입니다.