안드로이드 스튜디오 애뮬레이터를 실행했는데 다음과 같은 오류가 떴다
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.
해결법
Recommended action에서 제시한 것처럼 compileSdk 버전을 34로 변경한다
gradle파일(Module)
android {
namespace = "com.asiae.recyclerviewex"
compileSdk = 34
}
수정 후 Sync now 잊지 말것!
'Android, Kotlin 📱 > Android Studio' 카테고리의 다른 글
'Intel HAXM installation failed' 가상화 설치 오류 (0) | 2022.09.04 |
---|