check_root_jailbreak

Creator: coderz1093

Last updated:

0 purchases

check_root_jailbreak Image
check_root_jailbreak Images
Add to Cart

Description:

check root jailbreak

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
copied to clipboard
This will add a line like this to your package's pubspec.yaml:
dependencies:
check_root_jailbreak: ^0.0.5
copied to clipboard
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>

copied to clipboard
Usage #
final _checkRootJailbreakPlugin = CheckRootJailbreak();
bool? isRootAvailable;
try {
isRootAvailable = await _checkRootJailbreakPlugin.isRootAvailable();
} on PlatformException {
isRootAvailable = null;
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.