| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- Hilt
- include이벤트처리
- glide
- 프론트엔드
- 안드로이드스튜디오
- SpringWebFlux
- hilt오류
- include태그
- 안드로이드 스튜디오 JAVA
- 안드로이드 스튜디오 API
- 자바
- 리사이클러뷰
- 안드로이드 스튜디오
- kotlin
- SpringBoot
- 안드로이드로딩창
- 데이터바인딩
- 종속항목삽입
- 공공데이터포털리사이클러뷰
Archives
- Today
- Total
내일은개발왕
[build.gradle] fragment directions 생성이 안돼. 본문
정말 고마워요 stackoverflow!!! 필자는 보고, 아래와 같이 해결했다.
project 수준 build.gradle
buildscript{
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.3") <-- 요거 추가
}
}
plugins {
alias(libs.plugins.androidApplication) apply false
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
id("com.google.dagger.hilt.android") version "2.48" apply false
id("com.google.devtools.ksp") version("1.9.10-1.0.13") apply false
}
app 수준 build.gradle
plugins {
alias(libs.plugins.androidApplication)
alias(libs.plugins.jetbrainsKotlinAndroid)
kotlin("kapt")
id ("kotlin-parcelize")
id("com.google.dagger.hilt.android")
id("com.google.devtools.ksp")
id("androidx.navigation.safeargs.kotlin") <-- 요거 추가
}
https://stackoverflow.com/questions/50686907/safeargs-library-doesnt-generate-direction-class
Safeargs library doesnt generate direction class
I use navigation library and safeargs for passing data. I define argument to fragment like that. <fragment android:id="@+id/otherFragment" android:name="com.asd.navigate.OtherFr...
stackoverflow.com
'오류삽질,기타삽질' 카테고리의 다른 글
| [안드로이드 스튜디오] - Hilt구요 저도 에러를 낼거에요 ㅎㅎ - @Qualifier retrofit 사용시 (0) | 2024.05.24 |
|---|---|
| [안드로이드 스튜디오] 안녕 난 공백문자야 그리고 오류를 낼거야 (0) | 2024.05.13 |
| [build.gradle오류] roomDB가 존재하지 않습니다. 장비를 파괴합니다. (0) | 2024.05.09 |
| [안드로이드 스튜디오] Glide 이미지가 복사가 된다! 와! 왜..? (1) | 2024.02.16 |
| [속보]갤러리에 접근 안돼..확인하니 manifest 업데이트 되었었다. (1) | 2023.12.23 |