일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Gradle
- recyclerview
- Navigation Component
- hilt
- android studio
- themes.xml
- 안드로이드
- Android
- 주석
- 면접
- Livedata
- Datastore
- fragment
- asLiveData()
- ViewModel
- 일렉트론
- BottomNavigationView
- 개발자
- Binding Adapter
- Jetpack Compose
- nav_graph
- 취업
- electron
- imageview
- TypeConverter
- kotlin
- 테마
- Safe Args
- room
- 스플래시
Archives
- Today
- Total
나만 보는 일기장
[Navigation Component] Safe Args Dependency 추가 후 에러 발생 해결 (The given artifact contains a string literal with a package reference "'android.support.design.widget'" that cannot be safely rewritten.) 본문
개발/Android
[Navigation Component] Safe Args Dependency 추가 후 에러 발생 해결 (The given artifact contains a string literal with a package reference "'android.support.design.widget'" that cannot be safely rewritten.)
Patrick0422 2021. 12. 2. 17:08The given artifact contains a string literal with a package reference "'android.support.design.widget'"
that cannot be safely rewritten. Libraries using reflection such as
annotation processors need to be updated manually to add support for androidx.
Safe Args 추가 후 이런 에러가 떴는데 인터넷에 검색을 해봐도 버전을 올리고 내려도 도통 해결되지 않았습니다.
그러다가 똑같이 Safe Args를 썼는데 잘 작동했던 프로젝트와 비교해본 결과,
// Safe Args
implementation "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
앱 단위 Gradle에 있던 이 자식이 범인이었습니다.
Sage Args를 쓰려면 당연히 이 자식이 들어가 있어야 하겠지? 했는데 이 자식을 빼고 동기화 후 실행을 해보니 아주 말짱히 돌아갔습니다.
'개발 > Android' 카테고리의 다른 글
[Android Studio] TODO , FIXME 같은 색깔있는 주석 표시하기 (0) | 2021.12.13 |
---|---|
[RecyclerView] Shimmer RecyclerView 쓰는 법 (0) | 2021.12.07 |
[ViewModel] Activity와 Fragment간의 ViewModel 공유 (0) | 2021.12.02 |
[DataStore] DataStore 싱글톤으로 쓰기 (0) | 2021.12.01 |
Comments