반응형
안드로이드 Error:Execution failed for task ':app:buildInfoDebugLoader'. > Exception while doing past iteration backup : Source
위 에러를 해결하기 위해
1. Gradle Scripts -> build.gradle 파일 열기
defaultConfig {
applicationId ""
minSdkVersion 9
targetSdkVersion 22
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
multiDexEnabled true를 삽입합니다.
이렇게 해서 해결 되지 않으면
2. 메뉴 -> Build -> clean project -> 컴파일
이것은 이전에 컴파일한 프로그램을 삭제 후 컴파일 하는 것입니다.
위와 같이 두가지를 하면 해결 됩니다.
반응형