How can I get root permissions through the Android SDK?

75,164

Solution 1

What you need to do is something like:

Process root = Runtime.getRuntime().exec("su");

That causes SuperUser to show, which lets you either Allow or Block it from root access. This approach might not work if the user is not rooted. Here is a way you can test it.

Solution 2

First lets us get the basics right. Android run Linux kernel underneath. Now if you have to run your process on it with super user privileges(run it as root) the only way is to execute your process is via command line because it is the only way you can directly interact with the kernel. Also you need to use su before running any command. Also as Chris has mentioned in his comment on the 1st answer

Process process = Runtime.getRuntime().exec("su");

will accomplish nearly nothing. It will just ask for super use privilege using dialog. What you can do is instead of just executing su you can execute your process with su as following

Process process = Runtime.getRuntime().exec(new String[] { "su", "-c", yourCommand});

The -c Option

Among the most commonly used of su's few options is -c, which tells su to execute the command that directly follows it on the same line. Such command is executed as the new user, and then the terminal window or console from which su was run immediately returns to the account of the former user after the command has completed execution or after any program that it has launched has been closed.(More details)

Alternate Option

Alternative to above method one another way that might work is to use command line to copy you app to /system/app/ directory. Then your application will run automatically with root privileges(same as System apps)

Solution 3

The SDK does not offer a way to run an app as root.

Share:
75,164
Rob
Author by

Rob

I'm a french student. I'm currently studying at INSA Lyon, Lyon, France. Have a look to my weblog @ http://onair.stackr.fr You can follow me on twitter : http://twitter.com/#!/RobComaneith

Updated on July 19, 2022

Comments

  • Rob
    Rob almost 2 years

    I'm learning Android programming, and I want to make an application which has to run as root. The logical thing would be to add a root permission in the Android Manifest.

    I saw this link in the documentation, and especially noted the FACTORY_TEST permission:

    public static final String FACTORY_TEST

    Since: API Level 1

    Run as a manufacturer test application, running as the root user. Only available when the device is running in manufacturer test mode. Constant Value: "android.permission.FACTORY_TEST"

    Is that the best way?

    If it's not possible using the SDK, how can I make a "root" application work?