mobile_root_checker 1.0.0
mobile_root_checker: ^1.0.0 copied to clipboard
Flutter ile cihazın rootlu/jailbreak olup olmadığını kontrol eden paket.
example/main.dart
import 'package:mobile_root_checker/mobile_root_checker.dart';
/// Example usage of the mobile_root_checker package.
void main() async {
print("📱 Starting root/jailbreak detection...");
final isRooted = await RootChecker.isDeviceRooted();
if (isRooted) {
print("⚠️ Warning: The device is rooted or jailbroken!");
} else {
print("✅ Safe: The device is not rooted.");
}
}