Running Android on an Mx5x platform and trying to access and run several (built-in) busybox commands from inside an app.
Many work fine, a couple of examples:
- Runtime.getRuntime().exec("ls -l")
- Runtime.getRuntime().exec("ping www.google.com")
But any busybox command does not (e.g.);
- Runtime.getRuntime().exec("busybox traceroute 74.125.225.115")
They fail immediate with exit=1, as if hte command does not exist. I have created a soft link for the command which provides a (permissions 777) linked traceroute command. I.e. to allow this;
- Runtime.getRuntime().exec("traceroute 74.125.225.115")
Still no-go. Immediate exit=1 from the .exec() ?????????
I'm STUMPED! Any input would be most appreciated!