mobile_root_checker 1.0.1 copy "mobile_root_checker: ^1.0.1" to clipboard
mobile_root_checker: ^1.0.1 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.");
  }
}
1
likes
160
points
5
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter ile cihazın rootlu/jailbreak olup olmadığını kontrol eden paket.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on mobile_root_checker

Packages that implement mobile_root_checker