Teleport Intent
TELEPORT
Section titled “TELEPORT”Instantly move the mocked location to the specified coordinates.
Action: theappninjas.gpsjoystick.TELEPORT
Tier: Free
Extras
Section titled “Extras”| Extra | Type | Required | Description |
|---|---|---|---|
lat | float | Yes | Latitude (-90 to 90) |
lng | float | Yes | Longitude (-180 to 180) |
alt | float | No | Altitude in meters |
Tasker Example
Section titled “Tasker Example”- Create a new Task → Add Action → Misc → Send Intent
- Set Action to
theappninjas.gpsjoystick.TELEPORT - Enter Extra:
lat:37.8095 - Enter Extra:
lng:-122.4101 - (Optional) Enter Extra:
alt:10.4 - Set Target to Service
ADB Shell Example
Section titled “ADB Shell Example”Android 8.0+ (Oreo):
adb shell am start-foreground-service \ -a theappninjas.gpsjoystick.TELEPORT \ --ef lat 37.8095 \ --ef lng -122.4101With altitude:
adb shell am start-foreground-service \ -a theappninjas.gpsjoystick.TELEPORT \ --ef lat 37.8095 \ --ef lng -122.4101 \ --ef alt 10.4Older Android versions:
adb shell am startservice \ -a theappninjas.gpsjoystick.TELEPORT \ --ef lat 37.8095 \ --ef lng -122.4101FAVORITES
Section titled “FAVORITES”Teleport to a saved favorite location by name.
Action: theappninjas.gpsjoystick.FAVORITES
Tier: Pro
Extras
Section titled “Extras”| Extra | Type | Required | Description |
|---|---|---|---|
name | String | Yes | Name of the saved favorite (case-sensitive) |
Tasker Example
Section titled “Tasker Example”- Create a new Task → Add Action → Misc → Send Intent
- Set Action to
theappninjas.gpsjoystick.FAVORITES - Enter Extra:
name:Home - Set Target to Service
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service \ -a theappninjas.gpsjoystick.FAVORITES \ --es name "Home"Error: Returns FAVORITE_NOT_FOUND if no favorite with the given name exists.