safe_device_continued 1.0.1 copy "safe_device_continued: ^1.0.1" to clipboard
safe_device_continued: ^1.0.1 copied to clipboard

With the Flutter safe_device_continued package, you can easily implement security steps such as Jailbroken, root, emulator detection.

safe_device_continued_continued (Null-Safety) #

Safe Device

Flutter (Null-Safety) Jailbroken, root, emulator detection.

Getting Started #

In your flutter project add the dependency:

dependencies:
  ...
  safe_device_continued: ^1.0.1

Usage #

Importing package

import 'package:safe_device_continued/safe_device_continued.dart';

Using it

Checks whether device JailBroken on iOS/Android?

bool isJailBroken = await SafeDevice.isJailBroken;

Checks whether device is real or emulator

bool isRealDevice = await SafeDevice.isRealDevice;

(ANDROID ONLY) Check if application is running on external storage

bool isOnExternalStorage = await SafeDevice.isOnExternalStorage;

Check if device violates any of the above

bool isSafeDevice = await SafeDevice.isSafeDevice;

(ANDROID ONLY) Check if development Options is enable on device

bool isDevelopmentModeEnable = await SafeDevice.isDevelopmentModeEnable;

Note: #

DevelopmentMode #

  • -Development Options in emulator always is true for default
1
likes
140
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

With the Flutter safe_device_continued package, you can easily implement security steps such as Jailbroken, root, emulator detection.

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on safe_device_continued

Packages that implement safe_device_continued