项目作者: chdir

项目描述 :
Collection of Android libraries for accessing filesystem from Java with root privileges
高级语言: Java
项目地址: git://github.com/chdir/fdutil.git
创建时间: 2017-02-06T03:43:33Z
项目社区:https://github.com/chdir/fdutil

开源协议:Other

下载


Branch Build Status
Master Master Build status

Usage

Download

Add the library to project:

  1. repositories {
  2. maven {
  3. url 'http://dl.bintray.com/alexanderr/maven'
  4. }
  5. }
  6. dependencies {
  7. compile 'net.sf.xfd:providers:0.1'
  8. }

The library includes two ContentProviders: one is exported without permission protection
(no extra steps like calling grantUriPermission required!), and security is ensured by signing
dynamically generated Uri with SHA1-based HMAC. Annother one implements DocumentProvider contract
(an entry in file choser). You can disable either of them, if you don’t need both.

See source code of example project for basic usage.