fake_gps_detector

Last updated:

0 purchases

fake_gps_detector Image
fake_gps_detector Images
Add to Cart

Description:

fake gps detector

Fake GPS Detector, Emulator Device Detector #
A Flutter plugin for detecting the emulator device and mock location / fake gps.
Getting Started #
In your flutter project add the dependency:
dependencies:
...
fake_gps_detector: ^0.5.0
copied to clipboard
Usage #
Importing package
import 'package:fake_gps_detector/fake_gps_detector.dart';
copied to clipboard
Permission src/main/AndroidManifest.xml
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
copied to clipboard
Using it
(ANDROID ONLY) Checks whether device is real or emulator
bool isMock = await FakeGpsDetector.isFakeGps;
copied to clipboard
(ANDROID ONLY) Can this device mock location - no need to root!
bool isEmulator = await FakeGpsDetector.isEmulator;
copied to clipboard
Note: #
Add a location permission request before calling the "isFakeGps" method, make sure it has been approved to access the location. For more details, please open the example directory

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.