Error
flutter socketexception os error connection refused errno = 111
# flutter socket 에러 111 인용 글 : https://g0n1.tistory.com/197 [flutter] flutter socketexception os error connection refused errno = 111 문제 상황 로컬에서 flask로 간단하게 만든 서버에 요청을 보냈더니 이러한 에러가 발생했다. 문제 원인 원인은 안드로이드 에뮬레이터가 localhost 대신 10.0.2.2를 사용하기 때문이다. 해결 방법 loca g0n1.tistory.com 1. 문제 원인 > 안드로이드 에뮬레이터는 localhost로 웹 테스트 할 경우 10.0.2.2를 사용해야 한다. 2. 해결 방법 // const url = 'http://localhost:8000/fcm_token'; //..