Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- macos
- OS
- TypeScript
- postman
- algorithm
- sequelize
- Network
- OOAD
- wireshark
- Util
- css
- MongoDB
- DATABASE
- docker
- linux
- python
- ubuntu
- Express
- Scheduling
- AWS
- node.js
- React
- HTML
- Crawling
- Android
- mysql
- S3
- Kotlin
- mongoose
- typeorm
Archives
- Today
- Total
Seongwon Lim
[Android] The minCompileSdk (31) specified in adependency's AAR metadata .. 에러 해결하기 본문
Android
[Android] The minCompileSdk (31) specified in adependency's AAR metadata .. 에러 해결하기
limsw 2022. 6. 4. 14:19반응형
서론
안드로이드 빌드 시 아래와 같은 오류가 나타나는 경우가 있다.
The minCompileSdk (31) specified in a
dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties)
is greater than this module's compileSdkVersion (android-30).
Dependency: androidx.appcompat:appcompat:1.4.0.
AAR metadata file: /Users/seongwon/.gradle/caches/transforms-2/files-2.1/f93afd0c2de5556c94c5f01f4cd8608f/appcompat-1.4.0/META-INF/com/android/build/gradle/aar-metadata.properties.
아마 안드로이드 버전이 업데이트 되면서, 이전 SDK version을 사용함에 따라 발생한 오류인 것 같다.
해결 방법
먼저, build.gradle (:app) 파일을 연다.
android {
compileSdkVersion 31 // 해당 부분
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.example.test2"
minSdkVersion 16
targetSdkVersion 31 // 해당 부분
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
...
}
그리고 compileSdkVersion, targetSdkVersion 2개의 값을 31로 변경한다.
(수정되기 전 필자의 SDK 버전은 30으로 설정되어 있었다.)
마지막으로 Sync Now를 클릭하여 변경된 환경 설정들을 반영하면 에러를 해결할 수 있다.
'Android' 카테고리의 다른 글
[Kotlin] AlertDialog를 이용한 경고창(대화 상자) 띄우기 (0) | 2022.08.01 |
---|---|
[Kotlin] 인텐트(Intent)를 이용하여 데이터 전달하기 (0) | 2022.07.31 |
[Android] 코틀린(Kotlin) Intent를 이용하여 페이지 이동하기 (0) | 2022.07.29 |
[Android] 코틀린(Kotlin)에서 조건문&반복문 사용 방법 (0) | 2022.06.17 |
[Android] ListView 사용 방법 (0) | 2022.06.05 |
Comments