Skip to content Skip to sidebar Skip to footer

Android Emulator Send Network Provider Updates

How do I send updates to an Android emulator as if they were coming from the 'network' provider. DDMS seems to send as the 'gps' provider, with no way to change it.

Solution 1:

As far as I know, you can't use the "network" provider in the emulator, unfortunately.

Note: Providing mock location data is injected as GPS location data, so you must request location updates from GPS_PROVIDER in order for mock location data to work.

http://developer.android.com/guide/topics/location/strategies.html#MockData

Post a Comment for "Android Emulator Send Network Provider Updates"