flutter_tamper_detector 0.2.0
flutter_tamper_detector: ^0.2.0 copied to clipboard
flutter_tamper_detector is a Flutter security plugin that detects rooting, hooking tools like Frida and Xposed, or emulators, allowing you to block execution or exit the app.
0.2.0 #
- Implemented
isDebug
method to detect if the app is running in debug mode. - New Method:
FlutterTamperDetector.isDebug()
- Returns
true
if the app is in debug mode, otherwise returnsfalse
. - Utilizes native code in Kotlin to check the app's
ApplicationInfo.FLAG_DEBUGGABLE
flag. - Optional parameter
exitProcessIfTrue
iftrue
finish app process immediately.
0.1.4 #
- Added instructions in README.md for properly configuring ProGuard/R8.
- Updated the example app (
example/
) to include information about ProGuard. - Improved documentation to make it easier to configure the package in projects that use code minification and obfuscation.
0.1.3 #
- Use dart format to fix the pub points
- Not affect the code
0.1.2 #
- Fix Readme
0.1.1 #
- Adding an example/project so you can natively implement and terminate processes before even entering the flutter engine
- See Readme
0.1.0 #
- Added a new parameter to terminate the application process automatically natively
- Update README and example
0.0.2 #
- Fix references to repository
0.0.1 #
- Initial release of
flutter_tamper_detector
- Added root, hook, and emulator detection