Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 커스텀뷰
- 안드로이드
- Glide
- 안드로이드 스튜디오
- 안드로이드 라이브러리
- ButterKnife
- 아마존웹서비스
- OTTO
- 라이브러리
- VMware
- Mac
- Logcat
- 이미지로딩 라이브러리
- Picasso
- AWS
- Today
- 228
- Total
- 1,746,784
박상권의 삽질블로그
[Android ERROR&SOLVE]GC overhead limit exceeded 본문
제가 운영하고 있는 유튜브 채널 '개발자 테드박'에도 많은 관심 부탁드려요.
스타트업/개발자/IT 관련된 여러 영상을 올리고 있습니다.
영상보러가기
블로그를 Medium으로 옮겨서 운영하고 있습니다.
앞으로 새로운 글은 모두 미디엄 블로그를 통해서 올릴 예정입니다.
미디엄에서 다양하고 유익한 포스팅을 살펴보세요
미디엄 블로그 보기
현상
- Execution failed for task ':app:preDexDebug'.
- com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: .... finished with non-zero exit value 1
- GC overhead limit exceeded
이유
- heap의 용량을 넘어서면서 오류가 발생
해결방법
1. build.gradle의 dexOptions에 Heap크기 지정
dexOptions {
incremental true
javaMaxHeapSize "4g"
}
'IT > Android-ERROR&SOLVE' 카테고리의 다른 글
java.lang.ClassCastException: android.view.AbsSavedState$1 cannot be cast to (0) | 2015.12.21 |
---|---|
Event bus [Bus "default"] accessed from non-main thread Looper (1) | 2015.11.16 |
[Android ERROR&SOLVE]org.apache.http does not exist (0) | 2015.11.05 |
[Android ERROR&SOLVE]Default Activity Not Found (0) | 2015.10.22 |
[Android ERROR&SOLVE]threadid=1: thread exiting with uncaught exception (0) | 2015.07.24 |
0 Comments