IDE/Android Studio 3

app:processDebugAndroidTestManifest FAILED 에러 해결

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..

IDE/Android Studio 2022.01.14

Failed to install the following Android SDK packages as some licences have not been accepted 에러 해결 방법

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..

IDE/Android Studio 2022.01.07