# flutter socket 에러 111
인용 글 : https://g0n1.tistory.com/197
1. 문제 원인
> 안드로이드 에뮬레이터는 localhost로 웹 테스트 할 경우 10.0.2.2를 사용해야 한다.
2. 해결 방법
// const url = 'http://localhost:8000/fcm_token'; //ios
const url = 'http://10.0.2.2:8000/fcm_token'; //android
> x-code 시뮬레이터의 경우는 localhost를 그대로 사용하고,
android 시뮬레이터의 경우는 10.0.2.2를 사용.