jandorwizard
Lurker
My phone - rooted Android 4.2. Popular file managers work well with directory like "/config" or "/data". But in my program I can't observe this directories.
I use library RootTools
if (RootTools.isRootAvailable()) {
if (RootTools.isAccessGiven()) {
new File("/config").listFiles();//null
}
}
I see window with confirm "get root access" and push "yes". And I add in manifest
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
I use library RootTools
if (RootTools.isRootAvailable()) {
if (RootTools.isAccessGiven()) {
new File("/config").listFiles();//null
}
}
I see window with confirm "get root access" and push "yes". And I add in manifest
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />