2.3.1 • Published 7 months ago

react-native-turbo-mock-location-detector v2.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

react-native-turbo-mock-location-detector

Protect your business from location spoofing. Mock location detector is designed to detect and prevent any attempts to spoof GPS location, making it the perfect solution for any use case that requires accurate location tracking. Common examples include fleet management and logistics apps where truck drivers may use tools like Location Changer and Mock Locations.

Library supports both new and old architecture of React Native.

Installation

yarn add react-native-turbo-mock-location-detector
cd ios && pod install

Expo

Works with no additional config

Prerequisites

  1. Use eg. react-native-permissions to ask for location permission
  2. In your AndroidManifest.xml use at least one of:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  1. In your Info.plist use:
<key>NSLocationWhenInUseUsageDescription</key>
<string>YOUR TEXT</string>

Usage

import { isMockingLocation, MockLocationDetectorErrorCode, MockLocationDetectorError } from 'react-native-mock-location-detector'

useEffect(() => {
    isMockingLocation()
        .then(({ isLocationMocked }) => {
            // isLocationMocked: boolean
            // boolean result for Android and iOS >= 15.0
        })
        .catch((error: MockLocationDetectorError) => {
            // error.message - descriptive message
            switch (error.code) {
                case MockLocationDetectorErrorCode.GPSNotEnabled: {
                    // user disabled GPS
                    return
                }
                case MockLocationDetectorErrorCode.NoLocationPermissionEnabled: {
                    // user has no permission to access location
                    return
                }
                case MockLocationDetectorErrorCode.CantDetermine: {
                    // always for iOS < 15.0
                    // for android and iOS if couldn't fetch GPS position
                }
            }
        })
}, [])

Support

Lib versionRN version
1.0 - 1.2>= 0.68
^2.00.71, 0.72

Testing

Library was tested:

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


2.3.1

7 months ago

2.3.0

10 months ago

2.2.0

10 months ago

2.0.1

1 year ago

2.0.0

1 year ago

1.2.0

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago