error
-
Design editor is unavailable util after a successful project syncAndroid/Error 2020. 2. 25. 11:52
안드로이드 스튜디오를 업데이트 하거나 이전 버전 설정 파일이 있는 그대로 재설치 했을경우 layout 리소스를 확일 할때 해당현상이 발생한다. 해결방법은 상단 바에 File -> Sync Project with Gradle Files 라는 항목을 클릭 해당 방법으로 해결이 안될경우 1. 상단 바 File -> Invaildate Caches / Restart ... 를 클릭 2. Invalidate and restart 를 클릭
-
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6Android/Error 2020. 1. 9. 00:05
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6 위와 같은 에러가 발생시 App build.gradle 에 아래의 부분을 추가합니다. android { ... compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = JavaVersion.VERSION_1_8.toString() } } 또는 preferences... -> kotlin Compier -> Kotlin to JVM -> Tar..
-
java.lang.RuntimeException: Method myLooper in android.os.Looper not mocked.Android/Error 2020. 1. 7. 09:52
테스트 코드 실행시 아래와 같은 에러가 발생시 조치 방법 java.lang.RuntimeException: Method myLooper in android.os.Looper not mocked. build.gradle 에 아래와 같이 추가 android { // ... testOptions { unitTests.returnDefaultValues = true } } [참고링크] http://tools.android.com/tech-docs/unit-testing-support#TOC-Method-...-not-mocked.- Unit testing support - Android Studio Project Site Android tools project information site tools.andro..
-
No tests were found (Test code running failed)Android/Error 2019. 12. 26. 17:52
안드로이드에서 Test코드가 실행이안되며 No test were found 라고 에어를 출력한다면 gradle 에서 testInstrumentationRunner 가 예전 android.support로 되어 있을 수 있습니다. testInstrumentationRunner = 'android.support.test.runner.AndroidJUnitRunner' androidX 로 변경해줍니다. testInstrumentationRunner = 'androidx.test.runner.AndroidJUnitRunner'
-
Could not create service of type FileHasher using GradleUserHomeScopeServices.createCachingFileHasher(). 발생시Android/Error 2019. 11. 18. 10:46
Could not create service of type FileHasher using GradleUserHomeScopeServices.createCachingFileHasher(). 와 같은 메시지가 발생한경우 gradle 빌드중 ps가 lock이 걸린 상태가 된 경우 이다. ps aux | grep gradle 위와 같이 터미널에 명령어를 입력하여 ps 에서 gradle 이 작동중인지 확인후 kill -9 위의 명령어를 입력하여 해당 ps를 강제로 종료시킵니다. 그뒤 다시 빌드를 진행하면 정상적으로 진행이 됩니다. https://stackoverflow.com/questions/45177977/gradle-could-not-create-service-of-type-filehasher/4609480..