root_plus 1.0.5 copy "root_plus: ^1.0.5" to clipboard
root_plus: ^1.0.5 copied to clipboard

Root Plus, Request Root Access and Run Root Commands Easily with this Flutter Plugin.

Root Plus - Flutter Plugin for Root Commands #

Plugin Version Flutter Version

A Flutter plugin to request root access and execute privileged commands on rooted Android devices.

Features #

  • Request root access (su)
  • Execute single or multiple root commands
  • Get command output and error streams
  • Simple, clean API

Installation #

flutter pub add root_plus

Usage Guide #

1. Import the package #

import 'package:root_plus/root_plus.dart';

2. Request Root Access #

Check if root access is available:

bool hasRoot = await RootPlus.requestRootAccess();
if (hasRoot) {
print('Root access granted!');
} else {
print('Root access denied or device not rooted');
}

3. Execute Commands #

Single Command:

try {
String result = await RootPlus.executeRootCommand('pm list packages');
print('Installed packages: $result');
} on RootCommandException catch (e) {
print('Command failed: ${e.message}');
}

Multiple Commands (using \n):

try {
  String result = await RootPlus.executeRootCommand("echo Hello\necho World\npm list packages");
  print('Commands output: $result');
} on RootCommandException catch (e) {
  print('Error executing commands: ${e.message}');
}

Exceptions #

All methods may throw RootCommandException with these properties:

  • code: Error type (e.g., "COMMAND_FAILED")
  • message: Human-readable error message
  • details: Additional error details (often the command output)

Requirements #

  • Rooted Android Phone
  • Tested on Android 15, I didn't tested on other android versions.

Common Use Cases #

  1. System modifications (remounting partitions)
  2. Accessing protected system files
  3. Managing system apps (install/uninstall)
  4. Advanced device administration

Warning #

⚠️ Use with caution! Root access gives complete control over the device. Incorrect commands can brick your device

Author #

Developed by Zaher

2
likes
0
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

Root Plus, Request Root Access and Run Root Commands Easily with this Flutter Plugin.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on root_plus

Packages that implement root_plus