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 | 31 |
Tags
- 다이나믹 링크
- 선언형UI
- 아키텍처
- ImageView
- 안드로이드 라이브러리
- android daum map
- 클린 아키텍처
- 파이어베이스
- 컴포넌트
- 젯팩컴포즈
- Clean Architecture
- 안드로이드컴포즈
- component
- JetpackCompose
- 애드몹광고
- android 지도
- Android 애드몹
- 안드로이드 카카오 지도
- glide
- thread
- android kakao map
- 애드몹배너
- 동적 링크
- dynamiclink
- Firebase
- 안드로이드
- 안드로이드광고
- HTTP
- Android
- RecyclerView
Archives
- Today
- Total
목록android 오류 (2)
코딩스토리
[Android/ 안드로이드] Error : android.content.ActivityNotFoundException
Uri uri = Uri.parse("www.naver.com"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); 다음과 같이 인터넷 창을 띄우려 했는데 android.content.ActivityNotFoundException: at android.app.Instrumentation.checkStartActivityResult (Instrumentation.java:2071) at android.app.Instrumentation.execStartActivity (Instrumentation.java:1717) at android.app.Activity.startActivityForResult (Activity.java:5250) at androidx.a..
Android/오류 해결
2020. 12. 17. 22:43
[Android/안드로이드] A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x20 in tid 16770 (GLThread 431650), pid 16725 (googlemapsample)
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;를 선언해주면 해결됩니다.
Android/오류 해결
2020. 9. 14. 22:33