I have an Android service trying to bind to a server socket port 24. As it is privileged port, it is failing with a bind exception. I am wondering what I need to do to get this working. I see this was asked couple of times in this forum, but without a resolution.

This service runs on a device that runs on Android. We build android platform for the device. We have all the control we need.

link|improve this question

50% accept rate
1  
Based on general Linux knowledge, only processes that run as root can listen on port 24. Can you even run Java apps as root? – Seva Alekseyev Oct 24 '11 at 3:02
Agreed. The process must run as root, or perhaps as a user ID with admin privileges (not sure if Android supports that Linux concept). Usually, if you control the device, you're not writing daemons in Java, but in C/C++, and starting them using normal Linux daemon support. – CommonsWare Oct 24 '11 at 5:55
The "su ..." way of elevating privileges is not an option as I am binding to a port. I am not trying to spawn a shell script. As every android app is basically a process forked from zygote, unless zygote elevates privilege based on SOMETHING, you can't bind. I am wondering if zygote allows that or not. If it does, what is that SOMETHING? – videoguy Oct 25 '11 at 3:15
feedback

1 Answer

This is a very similar question: Run secure API calls as root, android, though they are trying to run as root for a different reason.

That made me wonder about installing 'system apps', and I saw this: http://android.stackexchange.com/questions/27/rooted-how-to-install-a-system-app

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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