본문 바로가기

Programming/Android

Android uid 위치 (linux에서의 /etc/passwd 대신)

/android/system/core/include/private/android_filesystem_config.h 



45#define AID_ROOT             0  /* traditional unix root user */

46

47#define AID_SYSTEM        1000  /* system server */

48

49#define AID_RADIO         1001  /* telephony subsystem, RIL */

50#define AID_BLUETOOTH     1002  /* bluetooth subsystem */

51#define AID_GRAPHICS      1003  /* graphics devices */

52#define AID_INPUT         1004  /* input devices */

53#define AID_AUDIO         1005  /* audio devices */

54#define AID_CAMERA        1006  /* camera devices */

55#define AID_LOG           1007  /* log devices */

56#define AID_COMPASS       1008  /* compass device */

57#define AID_MOUNT         1009  /* mountd socket */

58#define AID_WIFI          1010  /* wifi subsystem */

59#define AID_ADB           1011  /* android debug bridge (adbd) */

60#define AID_INSTALL       1012  /* group for installing packages */

61#define AID_MEDIA         1013  /* mediaserver process */

62#define AID_DHCP          1014  /* dhcp client */

...


'Programming > Android' 카테고리의 다른 글

Sticky broadcast intent  (0) 2017.10.16
Intent 보내기 제한 (restriction) of Android  (0) 2017.06.26
What is onPreExecute, doInBackground, onPostExecute  (0) 2016.11.02
adb unauthorized issue  (0) 2016.07.21
com.android.internal ...  (0) 2016.03.16