Stop, Pause & Resume
Stop all location mocking and shut down the GPS JoyStick service.
Action: theappninjas.gpsjoystick.STOP
Tier: Free
Extras: None
Tasker Example
Section titled “Tasker Example”- Create a new Task → Add Action → Misc → Send Intent
- Set Action to
theappninjas.gpsjoystick.STOP - Set Target to Service
ADB Shell Example
Section titled “ADB Shell Example”# Android 8.0+adb shell am start-foreground-service -a theappninjas.gpsjoystick.STOP
# Older Androidadb shell am startservice -a theappninjas.gpsjoystick.STOPROUTE_PAUSE
Section titled “ROUTE_PAUSE”Pause the currently active route. The mocked location remains at the current position.
Action: theappninjas.gpsjoystick.ROUTE_PAUSE
Tier: Pro
Extras: None
Error: Returns NOT_WALKING if no route is currently walking.
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service -a theappninjas.gpsjoystick.ROUTE_PAUSEROUTE_RESUME
Section titled “ROUTE_RESUME”Resume a previously paused route from where it stopped.
Action: theappninjas.gpsjoystick.ROUTE_RESUME
Tier: Pro
Extras: None
Error: Returns NO_ROUTE_ACTIVE if no route is loaded.
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service -a theappninjas.gpsjoystick.ROUTE_RESUMEROUTE_NEXT
Section titled “ROUTE_NEXT”Skip forward to the next waypoint in the active route.
Action: theappninjas.gpsjoystick.ROUTE_NEXT
Tier: Pro
Extras: None
Error: Returns NO_ROUTE_ACTIVE if no route is loaded.
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service -a theappninjas.gpsjoystick.ROUTE_NEXTROUTE_PREV
Section titled “ROUTE_PREV”Go back to the previous waypoint in the active route.
Action: theappninjas.gpsjoystick.ROUTE_PREV
Tier: Pro
Extras: None
Error: Returns NO_ROUTE_ACTIVE if no route is loaded.
ADB Shell Example
Section titled “ADB Shell Example”adb shell am start-foreground-service -a theappninjas.gpsjoystick.ROUTE_PREVPause/Resume Workflow Example
Section titled “Pause/Resume Workflow Example”# Start a routeadb shell am start-foreground-service \ -a theappninjas.gpsjoystick.ROUTE \ --es name "Daily Walk"
# Pause after a whileadb shell am start-foreground-service \ -a theappninjas.gpsjoystick.ROUTE_PAUSE
# Skip forward a waypointadb shell am start-foreground-service \ -a theappninjas.gpsjoystick.ROUTE_NEXT
# Resume from the new positionadb shell am start-foreground-service \ -a theappninjas.gpsjoystick.ROUTE_RESUME
# Stop completelyadb shell am start-foreground-service \ -a theappninjas.gpsjoystick.STOP