FLUTTER ECOSYSTEM

amitkhairnar44/root_access

안드로이드 앱에서 루트 접근 권한을 얻기 위한 플러터 플러그인입니다.

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!