Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
For desktop computers you can create/install drivers that emulate a GPS device/serial port device for the purpose of doing this kind of testing. Perhaps you could create or find something similar for android. – AaronLS Mar 31 '10 at 21:14
3  
There are several applications in Market which can emulate GPS location. For example "Location spoofer". – Vlad Dec 3 '10 at 7:32

12 Answers

up vote 58 down vote accepted
+275

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

   <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> 

to your manifest.

Now you can go in your code and create your own mock location provider and set the location of this provider.

share|improve this answer
16  
broken link :( plz update – Mayu Mayooresan Jun 21 '11 at 18:38
24  
There is an application on the market called "Fake GPS". If you enable Mock Locations on your device, it offers a nice GUI for setting your location. I realise this isn't a do-it-yourself solution, but certainly a worthy solution for quick testing. – Tim Green Aug 30 '11 at 22:16
2  
this might be the link - same date, and relevant content. – DefenestrationDay Apr 18 '12 at 22:40
2  
@TimGreen yours should be the accepted answer (not just a comment)! By far the easiest way to test – Bostone Jan 10 at 20:29

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.

share|improve this answer
14  
Why the haters? This answer is awesomely hard core. – Ben Zotto Apr 6 '10 at 18:37
5  
Awesomely hardcore although awesomely useless/irrelevant also. – snakerdlk Apr 25 '11 at 19:31
2  
Fun enough, though. – etienne Jun 14 '12 at 17:41

I wish I had my cable handy. I know you can telnet to the emulator to change it's location

$ telnet localhost 5554
Android Console: type 'help' for a list of commands
OK
geo fix -82.411629 28.054553
OK

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).

share|improve this answer
you get a permission denied to everything you send as a command to the console of your device. Maybe it is possible with a terminal application but I think that requires root access – Janusz Apr 6 '10 at 18:49
Just so we're on the same page: you're not talking about "adb shell" are you? What I'm talking about is different, this is something setup that allows you to set android-specific parameters. I know, for example, you can setup port forwarding (i.e. localhost:1234 goes to phone:1234) without root access, so you can setup a SOCKS proxy and tunnel via a cable w/o root. – Tim Green Apr 6 '10 at 18:58
You can use adb forward tcp:6000 tcp:23 to forwward port 6000 on your machine to port 23 on the device but I wasn't able to connect even if the port is shown as open. Using a telnet client on the device and connecting to localhost also fails – Janusz Apr 6 '10 at 19:28
Was looking for the way invoke this geo fix from command line, adb emu doesnt work, have you been luckier? – kirhgoff Mar 21 '12 at 16:47

You can use the Location Services permission to mock location...

"android.permission.ACCESS_MOCK_LOCATION"

and then in your java code,

// Set location by setting the latitude, longitude and may be the altitude...
String[] MockLoc = str.split(",");
Location location = new Location(mocLocationProvider);            
Double lat = Double.valueOf(MockLoc[0]);
location.setLatitude(lat);
Double longi = Double.valueOf(MockLoc[1]);
location.setLongitude(longi);
Double alti = Double.valueOf(MockLoc[2]);
location.setAltitude(alti);
share|improve this answer

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):

if (mLocationManager.getProvider(PROVIDER_NAME) != null) {
  mLocationManager.removeTestProvider(PROVIDER_NAME);
}

Second: To publish more than one location, you have to set the time for the location:

newLocation.setTime(System.currentTimeMillis());
...
mLocationManager.setTestProviderLocation(PROVIDER_NAME, newLocation);

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.

share|improve this answer
Cool suggestion about defining your own Provider, the thing with using the GPS_PROVIDER is that you (apparently) cannot get rid of the mock provider (more exactly, you cannot switch to normal GPS) until rebooting. Awesome post as well, I'll check out the references ! – Dr1Ku Jan 26 '11 at 16:55

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. mLocationManager is a LocationManager which is hooked up to a LocationListener:

private void getMockLocation()
{
    mLocationManager.removeTestProvider(LocationManager.GPS_PROVIDER);
    mLocationManager.addTestProvider
    (
      LocationManager.GPS_PROVIDER,
      "requiresNetwork" == "",
      "requiresSatellite" == "",
      "requiresCell" == "",
      "hasMonetaryCost" == "",
      "supportsAltitude" == "",
      "supportsSpeed" == "",
      "supportsBearing" == "",

      android.location.Criteria.POWER_LOW,
      android.location.Criteria.ACCURACY_FINE
    );      

    Location newLocation = new Location(LocationManager.GPS_PROVIDER);

    newLocation.setLatitude (/* TODO: Set Some Lat */);
    newLocation.setLongitude(/* TODO: Set Some Lng */);

    newLocation.setAccuracy(500);

    mLocationManager.setTestProviderEnabled
    (
      LocationManager.GPS_PROVIDER, 
      true
    );

    mLocationManager.setTestProviderStatus
    (
       LocationManager.GPS_PROVIDER,
       LocationProvider.AVAILABLE,
       null,
       System.currentTimeMillis()
    );      

    mLocationManager.setTestProviderLocation
    (
      LocationManager.GPS_PROVIDER, 
      newLocation
    );      
}
share|improve this answer
1  
Nice post, see my answer below for additions. – icyerasor Jan 26 '11 at 14:00

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.

share|improve this answer
much helpful example.. – Rashmi Dec 21 '12 at 12:56
Fake GPS is simpler. I'm just wondering why they are asking for caller id in the app permission :S – Guillaume Massé Apr 23 at 18:54

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.

share|improve this answer

If your device is plugged into your computer and your trying to changed send GPS cords Via the Emulator control, it will not work.
This is an EMULATOR control for a reason.
Just set it up to update you on GPS change.

lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);  

    ll = new LocationListener() {        
        public void onLocationChanged(Location location) {  
          // Called when a new location is found by the network location provider.  
            onGPSLocationChanged(location); 
        }

        public void onStatusChanged(String provider, int status, Bundle extras) {       
            bigInfo.setText("Changed "+ status);  
        }

        public void onProviderEnabled(String provider) {
            bigInfo.setText("Enabled "+ provider);
        }

        public void onProviderDisabled(String provider) {
            bigInfo.setText("Disabled "+ provider);
        }
      };

When GPS is updated rewrite the following method to do what you want it to;

public void onGPSLocationChanged(Location location){  
if(location != null){  
    double pLong = location.getLongitude();  
    double pLat = location.getLatitude();  
    textLat.setText(Double.toString(pLat));  
    textLong.setText(Double.toString(pLong));  
    if(autoSave){  
        saveGPS();  
        }
    }
}

Dont forget to put these in the manifest
android.permission.ACCESS_FINE_LOCATION
android.permission.ACCESS_MOCK_LOCATION

share|improve this answer

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.

share|improve this answer

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 ls, ps, df, etc. One of the commands is geo which allows you to spoof a location on your real device.

More info can be found on my website

share|improve this answer
Website link in valid. Please fix to avoid downvote. – Siddharth May 6 at 20:51

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.