Skip to content
Snippets Groups Projects
Commit 8840fa7f authored by Stephen Smalley's avatar Stephen Smalley Committed by Nick Kralevich
Browse files

Split system_app from system.


system_app is for apps that run in the system UID, e.g. Settings.
system is for the system_server.
Split them into separate files and note their purpose in the comment
header of each file.

Change-Id: I19369abc728ba2159fd50ae6b230828857e19f10
Signed-off-by: default avatarStephen Smalley <sds@tycho.nsa.gov>
parent a62d5c66
No related branches found
No related tags found
No related merge requests found
type system_app, domain; #
permissive system_app; # System Server aka system_server spawned by zygote.
app_domain(system_app) # Most of the framework services run in this process.
unconfined_domain(system_app) #
type system, domain; type system, domain;
permissive system; permissive system;
unconfined_domain(system); unconfined_domain(system);
......
#
# Apps that run with the system UID, e.g. com.android.system.ui,
# com.android.settings. These are not as privileged as the system
# server.
#
type system_app, domain;
permissive system_app;
app_domain(system_app)
unconfined_domain(system_app)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment