투케이2K
209. (TWOK/ERROR) [Android] [빌드 에러] error: resource android:attr/dialogCornerRadius not found 본문
209. (TWOK/ERROR) [Android] [빌드 에러] error: resource android:attr/dialogCornerRadius not found
투케이2K 2024. 1. 11. 20:02[환경 설정 및 설명]
프로그램 : AndroidStudio
설 명 : [Android] [빌드 에러] error: resource android:attr/dialogCornerRadius not found
[에러 원인]
1. 예전 프로젝트 수정 위해 빌드 수행 시 values 파일에서 v28 style 버전 확인 시 >> build.gradle 버전이 올바르지 않아서 해당 resource 를 찾을 수 없어서 발생하는 이슈
[해결 방법]
1. build.gradle 파일에서 안드로이드 support 버전 변경 실시
>> 이전 :
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.android.support:support-v4:26.1.0'
>> 변경 :
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:2.0.4'