root_access
Flutter 插件,用於在 Android 設備上請求 root 權限。此插件僅適用於 Android。
一個用於在 Android 應用中取得根權限的 Flutter 插件。
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
A Flutter plugin for requesting root access in Android apps.
Follow the plugin installation instructions.
import 'package:root_access/root_access.dart';
Define a bool variable and assign a value
bool _rootStatus = false;
The RootAccess class provides a getter to get root access and status
bool rootStatus = await RootAccess.requestRootAccess;
Declare an async method to retrieve root access
Future<void> initRootRequest() async {
bool rootStatus = await RootAccess.requestRootAccess;
setState(() {
_rootStatus = rootStatus;
});
}
Later you can use _rootStatus in your code to let app know the status of root access.
If it's false then root access is not granted in access prompt dialog and if it's true then root access has been granted to the app.
See the example application source for a complete sample app using the Root Access plugin.
Please file issues to send feedback or report a bug. Thank you!