How I use this:
in B4A?
B4X:
Q: Tasker integration (Donate version only)
To start Fake GPS at (38.89765, -77.0365)
1.Create a new task and entitle it "Start Fake GPS"
2. Add Action -> Misc -> Send Intent
3. Fill fields:
- Action: com.lexa.fakegps.START
- Extra: lat:38.89768D
- Extra: long:-77.0365D
- Target: Service
To stop Fake GPS use
- Action: com.lexa.fakegps.STOP
- Target: Service
You can use variables to specify lat/long as well. Please remember to add "D" to extras to specify it as Double
in B4A?