Closed amarz2195 closed 1 year ago
How can I get a root access in Orange Pi using Android OS? I have added the permission for super user in android, and other things:
try { Process process = Runtime.getRuntime().exec("su"); // rest of the code } catch (IOException e) { e.printStackTrace(); }
After adding this, it still cannot access the root of Orange Pi. The access is still denied. Why?
Have found the solution for this problem. With the help of an application
How can I get a root access in Orange Pi using Android OS? I have added the permission for super user in android, and other things:
try { Process process = Runtime.getRuntime().exec("su"); // rest of the code } catch (IOException e) { e.printStackTrace(); }
After adding this, it still cannot access the root of Orange Pi. The access is still denied. Why?