일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- room
- 개발자
- kotlin
- recyclerview
- 주석
- 안드로이드
- ViewModel
- Livedata
- Safe Args
- Jetpack Compose
- electron
- 취업
- asLiveData()
- fragment
- 면접
- 일렉트론
- Datastore
- android studio
- nav_graph
- Gradle
- Binding Adapter
- BottomNavigationView
- 스플래시
- imageview
- Android
- Navigation Component
- TypeConverter
- 테마
- hilt
- themes.xml
- 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..