ERROR:D8: Cannot fit requested classes in a single dex file이 오류를 보자마자 숨이 턱 막혔다엄청 나게 긴 양의 오류 메세지 ...구글링을 해보니 간단하게 해결 가능한 에러였다 android -> app -> build.gradle 파일로 이동을하고 multiDexEnabled true 을 defaultConfig 에 추가한다 마지막으로 dependencies 에 implementation 'com.android.support:multidex:1.0.3' 을 추가하면 끝 정상적으로 디버깅을 성공했다.