Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to execute a binary from source code of an android application. This binary must be run for a few seconds and I have to capture the standard output during this time. Then I have to kill both processes. The problem is that the binary attempts to access /dev/block/vold/179:1 (sdcard) to read the device and am getting the message "permission denied" or sometimes other error messages. I've no clear what I have to do to run for 30 seconds and how to solve the "permission denied." I think the problem is not "su" process execution, because the application asks me for root privileges (I put the "process.runtime.getRuntime (). Exec (" su ");)

Please, help me! I've a big headache!!

Thanks.

share|improve this question

1 Answer

Did you put this permission in your manifest?

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

Edit: Actually since you mention that it's reading, not writing, this may not be the answer you're looking for :P

share|improve this answer
Yes, I've this permission in my AndroidManifest. I've solved the problem running the binary file with a shell script that dont generate "permission denied" error. I dont know the reason. – user598011 Feb 2 '11 at 13:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.