Notice
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 |
Tags
- ImageView
- 파이어베이스
- 동적 링크
- 다이나믹 링크
- Firebase
- HTTP
- 안드로이드 라이브러리
- 안드로이드 카카오 지도
- 젯팩컴포즈
- glide
- component
- 안드로이드광고
- RecyclerView
- android daum map
- android kakao map
- dynamiclink
- android 지도
- 안드로이드
- Clean Architecture
- 애드몹배너
- 아키텍처
- Android
- 선언형UI
- 컴포넌트
- thread
- 클린 아키텍처
- 안드로이드컴포즈
- Android 애드몹
- 애드몹광고
- JetpackCompose
Archives
- Today
- Total
코딩스토리
[Android/안드로이드] A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x20 in tid 16770 (GLThread 431650), pid 16725 (googlemapsample) 본문
Android/오류 해결
[Android/안드로이드] A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x20 in tid 16770 (GLThread 431650), pid 16725 (googlemapsample)
라크라꾸 2020. 9. 14. 22:33A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x20 in tid 16770 (GLThread 431650), pid 16725 (googlemapsample)
다음 맵 API를 구현하면서 다음과 같은 오류가 발생했습니다.
해결방법 :
MapView를 import 할 때
import net.daum.android.map.MapView;를 하지말고
import net.daum.mf.map.api.MapView;를 선언해주면 해결됩니다.
'Android > 오류 해결' 카테고리의 다른 글
Comments