Skip to content
Snippets Groups Projects
Commit ed21bfca authored by Nick Kralevich's avatar Nick Kralevich Committed by Gerrit Code Review
Browse files

Merge "Only allow app domains to access SDcard via fuse mount."

parents ee615284 cf610692
No related branches found
No related tags found
No related merge requests found
...@@ -115,9 +115,9 @@ allow appdomain radio_data_file:file { read write getattr }; ...@@ -115,9 +115,9 @@ allow appdomain radio_data_file:file { read write getattr };
# cropping or taking user photos. # cropping or taking user photos.
allow untrusted_app system_app_data_file:file { read write getattr }; allow untrusted_app system_app_data_file:file { read write getattr };
# Access SDcard. # Access SDcard via the fuse mount.
allow appdomain sdcard_type:dir create_dir_perms; allow appdomain sdcard_internal:dir create_dir_perms;
allow appdomain sdcard_type:file create_file_perms; allow appdomain sdcard_internal:file create_file_perms;
# Allow apps to use the USB Accessory interface. # Allow apps to use the USB Accessory interface.
# http://developer.android.com/guide/topics/connectivity/usb/accessory.html # http://developer.android.com/guide/topics/connectivity/usb/accessory.html
......
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