Android Utililty Methods GPS Send

List of utility methods to do GPS Send

Description

The list of methods to do GPS Send are organized into topic(s).

Method

voidsendGps(int number)
Send Gps data to emulator.
sendGps(number, 0, -1);
voidsendGps(int number, int offset)
Send Gps data to emulator.
sendGps(number, offset, -1);
voidsendGps(int number, int offset, int pause)
Sends Gps data to emulator, and the start value has an offset.
if (number < 1) {
    return;
int pauseInterval = TINY_WAIT_TIME;
if (pause != -1) {
    pauseInterval = pause;
if (!isEmulator) {
...