Merge "Escape dot (.) when it is intended to be literal."
diff --git a/access_vectors b/access_vectors
index b039b0b..ff631f5 100644
--- a/access_vectors
+++ b/access_vectors
@@ -877,7 +877,6 @@
 {
 	specifyids
 	specifyrlimits
-	specifycapabilities
 	specifyinvokewith
 	specifyseinfo
 }
diff --git a/app.te b/app.te
index 261ec32..ba99e55 100644
--- a/app.te
+++ b/app.te
@@ -106,8 +106,8 @@
 # Allow read/stat of /data/media files passed by Binder or local socket IPC.
 allow appdomain media_rw_data_file:file { read getattr };
 
-# Read /data/data/com.android.providers.telephony files passed over Binder.
-allow appdomain radio_data_file:file { read getattr };
+# Read and write /data/data/com.android.providers.telephony files passed over Binder.
+allow appdomain radio_data_file:file { read write getattr };
 
 # Access SDcard.
 allow appdomain sdcard_type:dir create_dir_perms;