An app-owned privileged Android runtime
Priv Kit supports startup through Root, ADB, Manual, and external authorization bridges
English | 简体中文
Built on Flutter, this plugin seamlessly bridges Priv Kit's
Android runtime, priv-core, to the Dart side over platform channels.
Status: pre-release. Android only. The API may still change.
Priv Kit starts a separate Privileged Server process and hands your app a Binder to it. Once connected you can run privileged commands and query the server, without your own app holding the privilege.
This plugin covers the parts of priv-core that make sense to drive from Dart:
- Startup — Root, ADB Wireless Debugging, ADB static TCP/IP, manual, and external startup (for example through Shizuku).
- Connection state — a process-wide stream, plus startup diagnostics.
- Server lifecycle and permissions — ping, shutdown, owner restart, permission queries.
- ADB pairing and TCP control — pairing, authorization checks,
adb tcpipand friends. - Command execution — non-interactive processes with aggregated or streamed output.
Not covered yet: file proxy, UserService, and direct Binder access.
| Platform | Android only |
| Android API | 26+ (Android 8.0) |
compileSdk |
37+ (required by priv-core ) |
| Dart SDK | ^3.12.0 |
| Flutter | >=3.44.0 |
flutter pub add priv_kitThe plugin already depends on io.github.priv-kit:priv-core.
Your app only needs the platform-side pieces that Priv Kit requires.
See the Android Example Project.
// android/app/build.gradle.kts
android {
defaultConfig {
minSdk = 26
}
}With minSdk < 29 the native starter must be extracted from the APK, otherwise
it cannot be executed:
// android/app/build.gradle.kts
android {
packaging {
jniLibs {
useLegacyPackaging = true
}
}
}3️⃣ Hidden API access
Priv Kit reaches platform APIs that are hidden on Android 9+:
// MainApp.kt
import android.app.Application
import android.content.Context
import android.os.Build
import org.lsposed.hiddenapibypass.HiddenApiBypass
class MainApp : Application() {
override fun attachBaseContext(base: Context?) {
super.attachBaseContext(base)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
HiddenApiBypass.addHiddenApiExemptions("L")
}
}
}// android/app/build.gradle.kts
dependencies {
implementation("org.lsposed.hiddenapibypass:hiddenapibypass:6.1")
}Declare it in the manifest:
<!-- android/app/src/main/AndroidManifest.xml -->
<application android:name=".MainApp" ...>Only needed if you want the runtime to toggle Wireless Debugging and discover the connect port during startup:
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"
tools:ignore="ProtectedPermissions" />import 'package:priv_kit/priv_kit.dart';
final privKit = PrivKit();
// 1. Watch the connection. New listeners immediately get the current value.
privKit.serverState.listen((server) {
if (server == null) {
// disconnected
} else {
// connected; server.uid == 0 means root
}
});
// 2. Start a server.
try {
final info = await privKit.startRoot();
print('connected: uid=${info.uid} pid=${info.pid}');
} on PrivKitException catch (e) {
print('${e.code}: ${e.message}');
}
// 3. Run a command in it.
final result = await privKit.runCommand(
PrivCommand(arguments: const ['/system/bin/id']),
);
print(result.stdoutText);| Type | Name | Payload |
|---|---|---|
MethodChannel |
priv_kit |
every call |
EventChannel |
priv_kit/server_state |
Privilege.serverState |
EventChannel |
priv_kit/startup_log |
startup diagnostics |
EventChannel |
priv_kit/command/<id> |
streamed output of one command |
Each streamed command gets its own channel, because a Flutter EventChannel
name can only back one active broadcast at a time.
Docs: getting started, startup methods.
final info = await privKit.startRoot();Root startup checks the available su path, launches the shared server command,
and waits for the normal Binder handoff.
Wireless Debugging requires Android 11 or later. Priv Kit stores one ADB key for the application. The device must authorize that key before it can start a Privileged Server.
Ask the user to open Developer options > Wireless debugging > Pair device with pairing code.
While the pairing screen is open, pass its six-digit code to privKit.adbPair(pairingCode: ):
Pairing and starting are independent operations — a successful pair never starts the server:
final pairing = await privKit.adbCheckPairing();
if (!pairing.paired) {
await privKit.adbPair(pairingCode: '123456');
}
final info = await privKit.startAdb();adbPair() discovers the Wireless Debugging pairing port by default.
A host that already discovered the port can make the endpoint explicit:
await privKit.adbPair(pairingCode: '123456', port: 5555);const port = privilegeAdbDefaultTcpPort; // 5555
final prepared = await privKit.adbPrepareTcpForStart(tcpPort: port);
if (!prepared.isAuthorized) {
await privKit.adbRequestTcpAuthorization(tcpPort: port);
}
final info = await privKit.startAdb(
options: const PrivAdbConnectionOptions(port: port),
);For when the user runs the starter from a development machine:
final command = await privKit.getNativeStarterCommand();
// show: adb shell $commandThe server completes the handshake on its own; serverState emits the new
value.
Register a bridge natively — this is how an external authorizer such as a Shizuku UserService can run the starter:
PrivKitExternalStartupBridges.register("shizuku") { commandLine, stdout, stderr, receiver ->
shizukuService.start(commandLine, stdout, stderr, receiver)
}final command = await privKit.getNativeStarterCommand();
final output = await privKit.externalStartupRunThroughBridge(
commandLine: command,
bridgeId: 'shizuku',
);Pass your own operationId to make the startup cancellable:
final id = privKit.nextStartOperationId('adb');
final future = privKit.startAdb(operationId: id);
await privKit.cancelOperation(id); // future throws CANCELLEDprivKit.startupLog.listen((line) {
print('[${line.source}] ${line.message}');
});Docs: commands.
Commands run non-interactive processes in the connected server. Arguments are executed directly — no shell is added implicitly:
final result = await privKit.runCommand(
PrivCommand(
arguments: const ['/system/bin/id'],
environment: const {'LANG': 'C'},
workingDirectory: '/data/local/tmp',
),
);
print(result.exitCode);
print(result.stdoutText);Need shell parsing? Ask for it:
final result = await privKit.runCommand(
PrivCommand(arguments: const ['/system/bin/sh', '-c', 'ls /data/local/tmp']),
);Each process supports exactly one.
Aggregated — drains both streams, then reports:
final result = await privKit.runCommand(
PrivCommand(arguments: const ['/system/bin/cat', '/proc/version']),
maxBytesPerStream: 1 << 20, // default 1 MiB
);
print(result.stdoutTruncated); // excess is still drained, just not keptStreamed — emits output as it arrives. Cancelling the subscription kills the remote process:
final sub = privKit
.startCommand(
PrivCommand(arguments: const ['/system/bin/sh', '-c', 'logcat -v brief']),
)
.listen((event) {
event.when(
stdout: stdout.add,
stderr: stderr.add,
exit: (code) => print('exit: $code'),
);
});
await sub.cancel(); // terminates the remote processA chunk is not a line and does not respect UTF-8 boundaries — decode incrementally when rendering text.
The default is 30 seconds, counted from when the remote process starts. New output does not reset the countdown.
await privKit.runCommand(cmd, timeoutMillis: 120000); // longer
await privKit.runCommand(cmd, timeoutMillis: noCommandTimeout); // disabledAn unfinished command is also terminated when the owner process dies or the server shuts down. At most four commands run at once; the fifth fails immediately rather than queueing.
There is no stdin and no PTY. No interactive shells, terminal sizing, terminal signals, ANSI rendering, or daemon management. Some programs buffer when stdout is a pipe rather than a terminal, so data may arrive in bursts.
await privKit.connectReadyServer(); // attach to a server that announced itself
await privKit.getServerState(); // current server, or null
await privKit.getServerInfo(); // throws when not connected
await privKit.pingServer(); // false clears a dead connection
await privKit.shutdownServer();
// Before your app restarts itself:
await privKit.prepareOwnerRestart(passiveReconnectTimeoutMillis: 10_000);
// then terminate the process immediatelyfinal denied = await privKit.getDeniedServerPermissions();
final granted = await privKit.checkServerPermission(
'android.permission.GRANT_RUNTIME_PERMISSIONS',
);
final restricted = await privKit.isPermissionRestricted();getDeniedServerPermissions only covers Android permissions declared by the
server's packages. It does not cover AppOps, SELinux policy, or the service's
own authorization, so an empty list does not guarantee that every privileged
operation succeeds.
| Call | Purpose |
|---|---|
adbGetIdentityInfo |
this app's ADB identity and key fingerprint |
adbGetActiveTcpPort / adbGetConfiguredTcpPort |
static port state |
adbGetWirelessDebuggingControlStatus |
whether Wireless Debugging can be managed |
adbDiscoverPairingPort / adbDiscoverConnectPort |
port discovery (API 30+) |
adbPair / adbCheckPairing |
pairing |
adbOpenPairingCheckSession / adbCheckPairingSession |
polling without reconnecting |
adbPrepareTcpForStart / adbCheckTcpAuthorization / adbRequestTcpAuthorization |
authorization |
adbSwitchToTcp / adbStopTcp / adbRestartTcp |
control the static port |
closeSession |
release a session handle |
Sessions are held behind integer handles — always closeSession when polling
stops:
final sessionId = await privKit.adbOpenPairingCheckSession();
final result = await privKit.adbCheckPairingSession(sessionId);
await privKit.closeSession(sessionId);adbSwitchToTcp, adbStopTcp and adbRestartTcp affect every process that
depends on ADB, so confirm with the user first.
Every failure throws PrivKitException:
| code | meaning |
|---|---|
STARTUP_ERROR |
PrivilegeStartupException — the server could not start |
SERVER_UNAVAILABLE |
the server Binder is missing or dead |
COMMAND_ERROR |
a command could not start or complete |
COMMAND_TIMEOUT |
a command exceeded its deadline |
INVALID_ARGUMENT |
an argument failed validation |
ILLEGAL_STATE |
the call is not allowed in the current state |
SECURITY_ERROR |
a required Android permission is missing |
CANCELLED |
cancelled via cancelOperation |
UNSUPPORTED_API |
the ADB call needs Android 11 (API 30) |
NOT_FOUND |
unknown session handle or external startup bridge id |
NATIVE_ERROR |
any other native failure |
try {
await privKit.startRoot();
} on PrivKitException catch (e) {
switch (e.code) {
case PrivKitErrorCode.serverUnavailable:
// prompt the user to start the server
case PrivKitErrorCode.cancelled:
// the user backed out
default:
print('${e.code}: ${e.message}');
}
}Models in lib/src/models/ are generated with
freezed, which provides ==, hashCode,
toString and copyWith. Command events are a freezed union:
event.when(
stdout: (bytes) => ...,
stderr: (bytes) => ...,
exit: (code) => ...,
);After changing a model, regenerate (generated files are committed, so publishing does not require this):
dart run build_runner buildjson_serializable is deliberately not used: platform channel maps are not
JSON, and values like Uint8List should not round-trip through a JSON codec.
fromMap/toMap stay hand-written so field names line up with the Kotlin side.
priv-ui'sPrivilegeScaffoldis a Compose component and is not exposed through aPlatformView. Build your own authorization UI on top of the API above, which matches the "custom UI with priv-core" approach in the docs.PrivilegeServerInfo.lifecycleBinderis not sent across the channel. Dart receivesuid,pid,protocolVersionandselinuxContextonly.- File proxy, UserService and Binder access are not covered by this plugin.
- shizuku_api_plugin — A Flutter plugin to interact
with the Shizuku API, allowing your application to execute
shellcommands with system orADBprivileges.
If priv_kit helps you build better UIs, please consider supporting it.
It only takes a few seconds and helps other Flutter developers discover the library.