detect_fake_location

Creator: coderz1093

Last updated:

Add to Cart

Description:

detect fake location

detect_fake_location #
This is a Flutter plugin that detects if the user is using a fake(mock or simulated) location on their device.



Installation #
To use this plugin, add detect_fake_location as a dependency in your pubspec.yaml file.
Permissions #
iOS #
Add the following entries to your Info.plist file
<key>NSLocationAlwaysUsageDescription</key>
<string>App needs access to location when in the background.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>App requires access to location when open.</string>
copied to clipboard
Add the following to your Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
# Start of the permission_handler configuration
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
'$(inherited)',
# dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
'PERMISSION_LOCATION=1'
]
end
end
end
copied to clipboard
Android #
Add the ACCESS_COARSE_LOCATION, ACCESS_FINE_LOCATION and ACCESS_MOCK_LOCATION permission to your Android Manifest.
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
copied to clipboard
Usage #
Import the package with:
import 'package:detect_fake_location/detect_fake_location.dart';
copied to clipboard
Then you can use the following method to check if the user is using a fake location:
bool isFakeLocation = await DetectFakeLocation().detectFakeLocation();
copied to clipboard
Example #
import 'package:flutter/material.dart';
import 'package:detect_fake_location/detect_fake_location.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My App',
home: MyHomePage(),
);
}
}

class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('My App'),
),
body: Center(
child: ElevatedButton(
child: Text('Detect Fake Location'),
onPressed: () async {
bool isFakeLocation =
await DetectFakeLocation().detectFakeLocation();
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text('Fake Location Detected'),
content: Text(
'The user is${isFakeLocation ? '' : ' not'} using a fake location.'),
actions: <Widget>[
TextButton(
child: Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
},
),
),
);
}
}

copied to clipboard


Limitations #
For Android, the plugin uses the isMockLocationEnabled method to detect if the user is using a fake location. This method requires the ACCESS_MOCK_LOCATION permission, which may not be granted on some devices. In this case, the method will return false.
For iOS, the plugin uses the CLLocationSourceInformation class to detect if the location is simulated by software or produced by an external accessory. This class is only available on iOS 15 or later.
Contribute #
Contributions are welcome! Please submit issues and pull requests on the GitHub repository.
Credits #
For requesting permissions: permission_handler

License

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

Customer Reviews

There are no reviews.