app:processDebugAndroidTestManifest FAILED 에러 해결
2022. 1. 14. 20:38
IDE/Android Studio
app:processDebugAndroidTestManifest FAILED 에러 해결 방법 Clean Build and Rebuild or Invalidate Caches 를 통해 간혹 해결되기도 하지만 몇번 빌드하다 보면 다시 나타는 경우가 있음 이 에러는 여러가지 라이브러리를 가져다 쓰는중에 라이선스파일 충돌 혹은 라이브러리 중복 로드로 인해 발생한다고 함 나의 경우 build.gradle(app) 파일의 아래 부분을 androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' 👇 androidTestImplementation 'a..
FAILURE: Build failed with an exception. 에러 해결
2022. 1. 13. 20:33
IDE/Android Studio
FAILURE: Build failed with an exception. 에러 원인 gradle 홈을 설정해주지 않아 생긴 에러 해결 방법 File > Settings > Build, Execution, Deployment > Build Tools > Gradle 못찾겠으면 Gradle 검색 Gradle user home: 에 안드로이드 프로젝트 경로의 .gradle 경로를 설정해줌
Failed to install the following Android SDK packages as some licences have not been accepted 에러 해결 방법
2022. 1. 7. 20:53
IDE/Android Studio
Failed to install the following Android SDK packages as some licences have not been accepted. build-tools;30.0.2 Android SDK Build-Tools 30.0.2 To build this project, accept the SDK license agreements and install the missing components using the Android Studio SDK Manager. 빌드 시 이런 에러가 발생한다면 SDK 라이선스를 받아주면 해결됨 해결 방법 File > Settings > Appearance & Behavior > System Settings > Android SDK 로 이동 > SD..