SSAMKO의 개발 이야기

[Flutter] geolocator - ios simulator에서 PlatformException(ERROR_UPDATING_LOCATION)오류 해결 본문

Flutter

[Flutter] geolocator - ios simulator에서 PlatformException(ERROR_UPDATING_LOCATION)오류 해결

SSAMKO 2021. 4. 18. 12:19
반응형

flutter 패키지 중 하나인 geolocator를 이용해서 현재 위치location를 가져올 때, 정상적으로 Info.plist에 권한요청을 했음에도 오류가 나는 경우가 있다.

PlatformException(ERROR_UPDATING_LOCATION)에러가 발생하는데, 시뮬레이터 상에서 location 정보를 가져오지 못해서 발생하는 에러다.

 

ios시뮬레이터(12.04 기준)에서 Features > Location >  Any(free drive, Apple ...) 설정을 해주면, 시뮬레이터가 정상적으로 해당하는 location정보를 불러온다. 

 

참고: github.com/Baseflow/flutter-geolocator/issues/190

 

Exception on IOS · Issue #190 · Baseflow/flutter-geolocator

🐛 Bug Report I'm using the stream feature for real time location updates and I ran into an issue. When my position is fixed in the simulator, the update works normally but when I set the locati...

github.com

 

반응형
Comments