코딩스토리

[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:33

A/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;를 선언해주면 해결됩니다.

Comments