반응형 안드로이드 스튜디오 앱 개발/코딩 오류11 안드로이드 스튜디오 Execution failed for task ':app:mergeExtDexDebug' 오류 수정하기. FAILURE: Build failed with an exception.* What went wrong:Execution failed for task ':app:mergeExtDexDebug'.> Cannot access output property 'outputDir' of task ':app:mergeExtDexDebug'. Accessing unreadable inputs or outputs is not supported. Declare the task as untracked by using Task.doNotTrackState(). For more information, please refer to https://docs.gradle.org/8.7/userguide/incremental_build.. 2024. 10. 24. [Android Studio] Cannot resolve symbol 오류 해결하기 (6가지 방법) 어느 순간 잘 동작하던 안드로이드 스튜디오 프로젝트에서 온통 빨간 줄이 그어지기 시작했다.Cannot resolve symbol 이라는 이름으로 오류가 발생하였다. 예전에도 위와 같은 문제가 있어서 헤맸던 적이 있었는데 이번 기회에 오류해결 방법을 정리해 보도록 하겠다. 첫 번째 방법)Android Studio에서 Build > Clean Project를 선택 후,Android Studio에서 Build > Rebuild Project를 눌러 프로젝트를 다시 빌드해준다. 두 번째 방법)Android Studio의 캐시 및 임시 파일을 정리하여 오류를 해결한다. File > Invalidate Caches... / Invalidate and Restart를 선택하여 캐시를 제거하고 Android Studi.. 2024. 5. 23. [Android Studio] MainActivity has leaked window 에러발생 해결하기 - 망댕이의 앱 개발(안드로이드 스튜디오) 앱을 개발하다가 Activity로 만든 dialog를 띄워 종료 버튼을 누르면 앱이 종료될 수 있도록 해당 dialog_warning 레이아웃을 불러와 nobutton 눌렀을 때는 그냥 dialog 종료, yesbutton을 누를 때 앱이 종료되도록 코드를 짜놨습니다. 앱을 실행시켜도 정상적으로 잘 돌아갔구요 @Override public void onBackPressed() { Dialog dialog = new Dialog(MainActivity.this); dialog.setContentView(R.layout.dialog_warning); dialog.show(); Button nobutton = (Button)dialog.findViewById(R.id.noButton); Button yesbu.. 2024. 4. 16. [Android Studio] android.content.res.Resources$NotFoundException: String resource ID #0x5 에러 발생 해결하기 숫자를 출력하기 위해 setText를 사용하다 위와 같은 오류 메시지를 발견할 때가 있습니다. android.content.res.Resources$NotFoundException: String resource ID Random random = new Random(); int number_max = getIntent().getExtras().getInt("number_max"); int number_min = getIntent().getExtras().getInt("number_min"); Log.d(TAG,"최대값 : "+number_max); Log.d(TAG,"최소값 : "+number_min); int randomNum = random.nextInt(number_max); textView_numb.. 2023. 7. 6. 이전 1 2 3 다음 반응형