2023년 11월 9일 작성
Task :app:checkDebugAarMetadata FAILED
Execution failed for task ':app:checkDebugAarMetadata'.A failure occurred while executing cohttp://m.android.build.gradle.internal.tasks.CheckAarMetadataWorkAction
17 issues were found when checking AAR metadata:
이런 오류가 났다. 내가 현재 사용하는건 Android Studio Giraffe | 2022.3.1 Patch 1이다.
서치해보니 버전 오류라 build.gradle에서 compileSdk와 targetSdk를 각각 31로 바꿔주면 된다고해서 바꾸었더니 실패했다....
에러창을 다시 살펴보니
1. Dependency 'androidx.activity:activity:1.8.0' requires libraries and applications that
depend on it to compile against version 34 or later of the
Android APIs.
:app is currently compiled against android-33.
Recommended action: Update this project to use a newer compileSdk
of at least 34, for example 34.
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)
1번에 위와 같이 적어도 34 버전을 사용해라... 라고 되어있어서 34로 바꿔줬더니 해결되었다.
안드로이드 스튜디오는 정말 빨리빨리 업데이트되는 것 같다. 오류가 나면 서치보단 오류창을 먼저보도록 하자...