일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Binding Adapter
- room
- 일렉트론
- Jetpack Compose
- 면접
- Gradle
- 테마
- nav_graph
- electron
- Safe Args
- ViewModel
- 안드로이드
- 개발자
- 취업
- BottomNavigationView
- asLiveData()
- Datastore
- Navigation Component
- imageview
- TypeConverter
- Livedata
- themes.xml
- 스플래시
- Android
- kotlin
- android studio
- hilt
- recyclerview
- 주석
- fragment
- Today
- Total
목록Navigation Component (3)
나만 보는 일기장
The 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 "androi..
순서 BottomNavigationView 추가 menu 파일 생성 menu 적용 Navigation Component와 Bottom Navigation View 연결
0. 프로젝트 설정 앱 단위 Gradle plugins { ... id 'androidx.navigation.safeargs.kotlin' } ... dependencies { ... def nav_version = "2.4.0-alpha06" // Kotlin implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" implementation "androidx.navigation:navigation-ui-ktx:$nav_version" // Feature module Support implementation "androidx.navigation:navigation-dynamic-features-fragment:$nav_versi..