안녕하세요.


현재 지오코딩 어플을 개발단말에서 실행 시키면 service not available 메세지를 출력합니다.

이는 현재 frameworks/base/core/res/res/values/config.xml 파일에서 확인해 보면


    <!-- Component name of the service providing network location support. -->

    <string name="config_networkLocationProvider">@null</string>


    <!-- Component name of the service providing geocoder API support. -->

    <string name="config_geocodeProvider">@null</string>


provider가 null처리가 되어 있습니다.


구글링 해본 결과 


    <string name="config_networkLocationProvider">com.google.android.location.NetworkLocationProvider</string>

    <string name="config_geocodeProvider">com.google.android.location.GeocodeProvider</string>


로 수정해주면 된다는 분들도 계신데, com.google 패키지는 GMS와 관련 있는 부분인가요?


아무리 생각해도 개발시료에서 안 되는 이유를 모르겠네요.


CTS 관련 문제라고도 의심하고 있습니다만, 아시는 분들은 도움 부탁 드립니다.

감사합니다.