check_root_jailbreak 0.0.5 copy "check_root_jailbreak: ^0.0.5" to clipboard
check_root_jailbreak: ^0.0.5 copied to clipboard

A Flutter plugin project for checking Root on Android and Jailbreak on iOS.

check_root_jailbreak #

A Flutter plugin project for checking Root on Android and Jailbreak on iOS

Getting Started #

Install #

$ flutter pub add check_root_jailbreak

This will add a line like this to your package's pubspec.yaml:

dependencies:
  check_root_jailbreak: ^0.0.5

Configuration #

Android

No configuration is needed.

iOS

Add this code to the Info.plist file under the /ios/Runner/ folder.

	<key>LSApplicationQueriesSchemes</key>
	<array>
		<string>cydia</string>
	</array>

Usage #

final _checkRootJailbreakPlugin = CheckRootJailbreak();
bool? isRootAvailable;
try {
  isRootAvailable = await _checkRootJailbreakPlugin.isRootAvailable(); 
} on PlatformException {
  isRootAvailable = null;
}
0
likes
150
points
43
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin project for checking Root on Android and Jailbreak on iOS.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on check_root_jailbreak