반응형
Android Studio Arctic Fox 버전에서 간단한 empty app을 만들어서 run app을 했을 때 하기 에러가 발생했다.
Can't determine type for tag '<macro name="m3_comp_assist_chip_container_shape">?attr/shapeAppearanceCornerSmall</macro>'
build.gradle을 아래와 같이 수정하여 해결
implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'com.google.android.material:material:1.8.0'
->
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.0'
반응형
댓글