FLUTTER ECOSYSTEM

amitkhairnar44/root_access

一个用于在 Android 应用中获取根权限的 Flutter 插件。

root_access 项目封面
Stars
11
Forks
7
最近推送(UTC)
2022年10月5日
项目状态
未归档
Amit Khairnar GitHub avatar
GITHUB User

Amit Khairnar ↗

Flutter developer

@TAILORTECH-PRIVATE-LIMITED @Flutter-OpenHub @Arubadel @TwrpBuilder @wftrackerIndia官方网站 ↗
语言DartObjective-CJavaRuby

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

pub package Tests

Root access Plugin

A Flutter plugin for requesting root access in Android apps.

This plugin is based on RootTools by Stericson.
This plugin is only for Android platform.

Usage

Import the root_access plugin

Follow the plugin installation instructions.

Use the plugin
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.

Example

See the example application source for a complete sample app using the Root Access plugin.

Issues and feedback

Please file issues to send feedback or report a bug. Thank you!