mirror of
https://github.com/TonyJiangWJ/Auto.js.git
synced 2026-06-24 21:33:16 +08:00
20 lines
371 B
Java
20 lines
371 B
Java
package com.stardust.scriptdroid.tool;
|
|
|
|
import com.stericson.RootShell.RootShell;
|
|
|
|
/**
|
|
* Created by Stardust on 2018/1/26.
|
|
*/
|
|
|
|
public class RootTool {
|
|
|
|
public static boolean isRootAvailable() {
|
|
try {
|
|
return RootShell.isRootAvailable();
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
return false;
|
|
}
|
|
}
|
|
}
|