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 | 31 |
Tags
- 웹뷰
- ADB
- WebView
- Retrofit
- 안드로이드 스튜디오
- 코루틴
- 안드로이드스튜디오
- Github
- 의존성주입
- 코틀린
- 에러
- image
- RecyclerView
- MVVM
- viewpager
- Kotlin
- 유튜브
- GIT
- studio
- dart
- 안드로이드
- build
- 스튜디오
- error
- coroutine
- Gradle
- Android
- 안스
- 레트로핏
- 깃헙
Archives
- Today
- Total
코딩하는 일용직 노동자
Can't determine type for tag 빌드에러 수정 본문
Github 에서 2년전 자료를 클론받았다.
gradle 파일에서 dependencies의 라이브러리 버전들을 최신으로 올려준 후 빌드해보니 아래와 같은 에러메세지가 보이면서 빌드가 되지 않았다.
Can't determine type for tag '<macro name="m3_comp_assist_chip_container_shape">?attr/shapeAppearanceCornerSmall</macro>'
구글링을 해보니 최신 라이브러리에서 빌드시 에러가 발생하고 있어서 버전을 좀 낮춰서 해보라는 답변이 있었다.
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
을 아래처럼 고쳤다.
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.0'
정상적으로 빌드되고 실행되었다.
'안드로이드' 카테고리의 다른 글
LifecycleEventObserver를 이용한 Activity가 아닌 클래스에 라이프사이클을 연결. (0) | 2024.03.05 |
---|---|
aab, apk 빌드시 파일명 자동 생성하는 방법. (0) | 2024.01.31 |
GoogleCloud Git - permission denied (publickey) 문제 해결 (2) | 2023.05.22 |
adb command not found 수정하는 방법. (1) | 2023.05.10 |
Koin sharedViewModel deprecated. 이제부터는 activityViewModel을 사용하세요. (0) | 2023.05.10 |