Back to Main

FGPS real‑time mock location broadcast

Broadcasts are sent only when the “External data sharing” toggle is turned on inside FGPS. The broadcast uses the custom action com.igork.fakegps.LOCATION_DATA — any app can receive it with a simple BroadcastReceiver, no special permissions required.

Broadcast intent extras

Broadcast action: com.igork.fakegps.LOCATION_DATA
Enabled by: manual toggle “External data sharing” inside FGPS.
All location parameters are attached as extras using the keys and types listed below.
active boolean

Service state – true if spoofing is active, false otherwise.

time long

System.currentTimeMillis() when broadcast was sent.

lat double

Mock latitude (WGS84).

lon double

Mock longitude (WGS84).

speed float

Speed in meters per second.

bearing float

Heading in degrees relative to true north.

altitude double

Altitude in meters (WGS84 ellipsoid).

accuracy float

Horizontal accuracy radius in meters.

speedAccuracy float

Speed accuracy (m/s).

altitudeAccuracy float

Vertical accuracy in meters.

bearingAccuracy float

Bearing accuracy in degrees.