How to get root privilege for Android NDK code on a rooted phone

1k Views Asked by At

I'm trying to use raw socket in Android NDK C code. While accessing raw socket in Linux needs root privilege. I know that we can get root privilege for shell process by using Java code in a rooted phone:

Runtime.exec("su")

But the problem is how to get root privilege for my current thread/process but not the shell process?

0

There are 0 best solutions below