1### 2### Apps signed with the platform key. 3### 4 5type platform_app, domain; 6app_domain(platform_app) 7# Access the network. 8net_domain(platform_app) 9# Access bluetooth. 10bluetooth_domain(platform_app) 11# Read from /data/local/tmp or /data/data/com.android.shell. 12allow platform_app shell_data_file:dir search; 13allow platform_app shell_data_file:file { open getattr read }; 14# Populate /data/app/vmdl*.tmp, /data/app-private/vmdl*.tmp files 15# created by system server. 16allow platform_app { apk_tmp_file apk_private_tmp_file }:dir rw_dir_perms; 17allow platform_app { apk_tmp_file apk_private_tmp_file }:file rw_file_perms; 18allow platform_app apk_private_data_file:dir search; 19# ASEC 20allow platform_app asec_apk_file:dir create_dir_perms; 21allow platform_app asec_apk_file:file create_file_perms; 22 23# Access to /data/media. 24allow platform_app media_rw_data_file:dir create_dir_perms; 25allow platform_app media_rw_data_file:file create_file_perms; 26 27# Write to /cache. 28allow platform_app cache_file:dir create_dir_perms; 29allow platform_app cache_file:file create_file_perms; 30 31# Direct access to vold-mounted storage under /mnt/media_rw 32# This is a performance optimization that allows platform apps to bypass the FUSE layer 33allow platform_app mnt_media_rw_file:dir r_dir_perms; 34allow platform_app vfat:dir create_dir_perms; 35allow platform_app vfat:file create_file_perms; 36 37allow platform_app drmserver_service:service_manager find; 38allow platform_app mediaserver_service:service_manager find; 39allow platform_app persistent_data_block_service:service_manager find; 40allow platform_app radio_service:service_manager find; 41allow platform_app surfaceflinger_service:service_manager find; 42allow platform_app app_api_service:service_manager find; 43allow platform_app system_api_service:service_manager find; 44