D:\내 프로젝트 경로\app\build\intermediates\navigation_json\debug\navigation.json
이 없다는 오류
-----> 결론 : 다운그레이드 해주기(navigation.json을 다시 받아올 수 있도록)
1. build.gradle 편집
전
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
후
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
2. gradle-wrapper.properties 편집
전
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip
후
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip
'android' 카테고리의 다른 글
안드로이드 스튜디오와 녹스 연결하기(feat. 다음 지도 api) (0) | 2021.03.15 |
---|---|
역지오코딩 : 위도 경도를 주소로 변환 (0) | 2021.03.05 |
안드로이드 쓰레드쓰기 (0) | 2020.11.19 |
상단바 없애기 (0) | 2020.11.18 |
Rejecting re-init on previously-failed class java.lang.Class<androidx.core.view.ViewCompat$2>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/view/View$OnUnhandledKeyEventListener; 에러 (0) | 2020.11.18 |