본문 바로가기
Android/문제 해결

[Android] 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.

by 카피마스터 2024. 1. 24.

androidx.activity:activity:1.8.0 라이브러리가 Android API 34 이상을 필요로 하지만 

현재 프로젝트의 compileSdkVersion이 34보다 낮기 때문에 발생

 

 

컴파일 SDK의 버전을 34 이상으로 변경

1. build.gradle.kts을 열어 compileSdk=34로 변경

android {
    compileSdk 34
}

 

2. targetSdk 도 동일하게 변경

defaultConfig {
    targetSdk 34
}

 

2. 프로젝트 리로드(File -> Sync Project With Gradle Files)