How can I mock my location on a physical device (Nexus One)? I know you can do this with the emulator in the Emulator Control panel, but this doesn't work for a physical device.
|
|
It seems the only way to do is to use a mock location provider. You have to enable mock locations in the development panel in your settings and add
to your manifest. Now you can go in your code and create your own mock location provider and set the location of this provider. |
|||||||||||||||||
|
|
If you use this phone only in development lab, there is a chance you can solder away GPS chip and feed serial port directly with NMEA sequences from other device. |
||||
|
I wish I had my cable handy. I know you can telnet to the emulator to change it's location
I cannot remember if you can telnet to your device, but I think you can. I hope this helps. You'll need adb (android debugging bridge) for this (CLI). |
|||||||||
|
|
You can use the Location Services permission to mock location...
and then in your java code,
|
|||
|
|
|
What Dr1Ku posted works. Used the code today but needed to add more locs. So here are some improvements: Optional: Instead of using the LocationManager.GPS_PROVIDER String, you might want to define your own constat PROVIDER_NAME and use it. When registering for location updates, pick a provider via criteria instead of directly specifying it in as a string. First: Instead of calling removeTestProvider, first check if there is a provider to be removed (to avoid IllegalArgumentException):
Second: To publish more than one location, you have to set the time for the location:
There also seems to be a google Test that uses MockLocationProviders: http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/1.5_r4/android/location/LocationManagerProximityTest.java Another good working example can be found at: http://pedroassuncao.com/blog/2009/11/12/android-location-provider-mock/ Another good article is: http://ballardhack.wordpress.com/2010/09/23/location-gps-and-automated-testing-on-android/#comment-1358 You'll also find some code that actually works for me on the emulator. |
||||
|
|
I've had success with the following code. Albeit it got me a single lock for some reason (even if I've tried different LatLng pairs), it worked for me.
|
|||||
|
|
There are apps available in the Android Market that allow you to specify a "Mock GPS Location" for your device. I searched https://market.android.com and found an app called "My Fake Location" that works for me. The Mock GPS Provider mentioned by Paul above (at http://www.cowlumbus.nl/forum/MockGpsProvider.zip) is another example that includes source code -- although I wasn't able to install the provided APK (it says Failure [INSTALL_FAILED_OLDER_SDK] and may just need a recompile) In order to use GPS mock locations you need to enable it in your device settings. Go to Settings -> Applications -> Development and check "Allow mock locations" You can then use an app like the ones described above to set GPS coordinates and Google maps and other apps will use the mock GPS location you specify. |
|||||
|
|
The solution mentioned by icyerasor and provided by Pedro at http://pedroassuncao.com/blog/2009/11/12/android-location-provider-mock/ worked very well for me. However, it does not offer support for properly starting, stopping and restarting the mock GPS provider. I have changed his code a bit and rewritten the class to be an AsyncTask instead of a Thread. This allows us to communicate with the UI Thread, so we can restart the provider at the point where we were when we stopped it. This comes in handy when the screen orientation changes. The code, along with a sample project for Eclipse, can be found on GitHub: https://github.com/paulhoux/Android-MockProviderGPS All credit should go to Pedro for doing most of the hard work. |
||||
|
|
|
If your device is plugged into your computer and your trying to changed send GPS cords Via the Emulator control, it will not work.
When GPS is updated rewrite the following method to do what you want it to;
Dont forget to put these in the manifest |
||||
|
|
|
I wonder if you need the elaborate Mock Location setup. In my case once I got a fix location I was calling a function to do something with that new location. In a timer create a mock location. And call the function with that location instead. Knowing all along that in a short while GPS would come up with a real current location. Which is OK. If you have the update time set sufficiently long. |
|||
|
|
|
I had the same problem (I wanted to mock locations on a real device) and I created an app that allows you to telnet to your real android device. There you can then issue some commands like More info can be found on my website |
||||
|
|
|
Fake GPS app from google play did the trick for me. Just make sure you read all the directions in the app description. You have to disable other location services as well as start your app after you enable "Fake GPS". Worked great for what I needed. Here is the link to the app on GooglePlay: Fake GPS |
||||
|
|