On Nov 8, 2:01 am, Mina Shokry <[email protected]> wrote:
> Yes, I can execute it from adb shell, and from terminal emulator
> application on the phone itself.

Only other thing I can think of is that it's trying to execute the
wrong thing (e.g. a directory).  If the (unedited) path shown in the
exception message is correct, though, that's not likely.

You can try to use "strace" to see the actual system call.  Attach it
to the relevant process right before causing the exec().  You'll need
the "-f" option to follow the fork() call into the child.

You can also try using the ProcessBuilder stuff from a trivial stand-
alone application just to make sure what you're doing is working (and
also to check for bugs in the core libs).

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to