728x90
반응형
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 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.0.4'
이렇게 변경하여 해결함😥😭🎊
반응형
'IDE > Android Studio' 카테고리의 다른 글
FAILURE: Build failed with an exception. 에러 해결 (0) | 2022.01.13 |
---|---|
Failed to install the following Android SDK packages as some licences have not been accepted 에러 해결 방법 (0) | 2022.01.07 |