How to bind to a port less than 1024 in Android?

前端 未结 2 1124
孤独总比滥情好
孤独总比滥情好 2020-12-19 00:45

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 t

相关标签:
2条回答
  • 2020-12-19 01:15

    To bind to a port less than 1024, you need to be root and there are two ways of doing that.

    1. System app : The app should be installed into /system/apps folder from where it shall be run as root. However, there are some signature issues for which help is available. Distribution is also a problem with system apps.

    2. su binary : The su binary can be invoked using a simple exec("su -c [command]"). But things are easier said than done. You need to run an android processes not just a single command. Hence, there is libsuperuser which provides you the methods and has a full-length doc page.

    0 讨论(0)
  • 2020-12-19 01:20

    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: https://android.stackexchange.com/questions/27/rooted-how-to-install-a-system-app

    0 讨论(0)
提交回复
热议问题