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
- stateless widget
- 참조형 매개변수
- 클래스 변수
- FLUTTER
- object클래스
- static import문
- 운영체제의 목적
- 참조형 반환타입
- 운영체제란 무엇인가
- 운영체제의 구조
- webview_flutter
- 프로그래머스
- 오버라이딩과 오버로딩 차이점
- PriorityQueue
- stateful widget
- stateful widget 생명주기
- this()와 참조변수 this 차이점
- 운영체제의 분류
- this()
- 호출스택
- 초기화 순서
- 인스턴스 메서드
- static 메서드
- 조상의 생성자
- 이것이코딩테스트다
- 기본형 매개변수
- 객체 배열
- 오버로딩
- 명예의전당(1)
- 운영체제의 예
Archives
- Today
- Total
Coram Deo
[Flutter] 에러 해결 - E/AndroidRuntime(22637): DeadSystemException: The system died; earlier logs will point to the root cause 본문
에러 해결
[Flutter] 에러 해결 - E/AndroidRuntime(22637): DeadSystemException: The system died; earlier logs will point to the root cause
탁탁슝 2024. 6. 13. 23:18- 문제
플러터에서 안드로이드 애뮬레이터를 실행하려고 하는데 아래와 같은 오류가 났다
E/AndroidRuntime(22637): DeadSystemException: The system died; earlier logs will point to the root cause
- 해결
stack overflow에 검색해보니, 만약 A라는 프로세스를 제대로 종료하지 않고, B라는 프로세스를 실행했을 때 나타나는 문제라고 했다.
생각해보니 안드로이드 스튜디오에서 기본 Hello world 앱을 제대로 종료하지 않은 기억이 있었다.
그래서 애뮬레이터에 설치되어있던 Hello world 앱을 삭제해주고 다시 run and debug를 하니 제대로 실행되었다 !!
https://stackoverflow.com/questions/42784731/android-deadsystemexception
Android DeadSystemException
Currently, we are experiencing a DeadSystemException in our HockeyApp crash reporting. It occurs on Android 7.0 and Android 7.1. We don't experience this exception in the previous version of our
stackoverflow.com
// 스택오버플로우 해결책
Fatal Exception: java.lang.RuntimeException: android.os.DeadSystemException
This exception was caused in one of the apps I was developing, it occurred mostly in MI devices.
After debugging I found that I was trying to start another service (Say B) in the current service (Say A) from a background thread,
but when startService(itService) method was called the service A was already killed.
The only solution I found till now is to check if the current service A is running or not before you start another service B.
Depending on your implementation you can use one of the various ways to check if a services is running from this answer.
'에러 해결' 카테고리의 다른 글
[Flutter] ListView 에러 해결 - Cannot hit test a render box with no size. (1) | 2024.10.02 |
---|---|
[Flutter] Firebase 연동 에러 해결 (0) | 2024.08.20 |
[Flutter] 에러 해결 - 안드로이드 애뮬레이터 실행시 발생 오류 (0) | 2024.06.03 |
[Flutter] 에러해결 - Unable to find git in your PATH (0) | 2024.06.03 |
[Flutter] build 에러 - Target of URI doesn't exist 'package:flutter/material.dart' (0) | 2024.05.30 |