sapsis_secure_device_check 0.0.1
sapsis_secure_device_check: ^0.0.1 copied to clipboard
SecurityCheck is a utility class that performs basic Android And IOS device security checks. It helps identifywhethera device has security settings enabled that may increase the risk of tampering or debugging
Secure Device Check Plugin #
A Flutter plugin for Android & IOS security checks .
Features #
- Root Detection
- USB Debugging Detection
- Developer Options Detection
- USB FILE Sharing
- JailBreak Detection
- Detection Is On Physical Device or Not
Usage #
Example #
import 'package:secure_device_check_plugin/secure_device_check_plugin.dart';
Future
both Android And Ios #
Android
- isUsbDebuggingEnabled() return Type Boolean
- isEmulator() return Type Boolean
- isRootedCheck() return Type Boolean
- isUsbFileSharedOn() return Type Boolean
- deviceInformation() return Type Map<String,dynamic>
IOS
- isJailbreak() return Type Boolean
- isSimulator() return Type Boolean
- deviceInformation() return Type Map<String,dynamic>