I have an Android app that needs to run a custom binary app I wrote. I already built the binary using ndk and packaged it in the apk under res/raw
I did something like this to first run the su process.
Process process;
process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
What do I do after this to run the binary from resources? There was another question here that suggested the use of AssetManager but I don't understand how to do it exactly. I checked out some opensource Apps (android-wifi-tether, etc.) that have binaries packaged with them and I don't see AssetManager anywhere in their source and don't understand how exactly they're doing it.