0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.