vendor: sepolicy: allow apps with sdk below 25 to read otg

also remove usedebug or eng check

Change-Id: I92f0a2948adf36be35f639bfc2b47f4ddd0d2d05
diff --git a/sepolicy/untrusted_app.te b/sepolicy/untrusted_app.te
index 477599b..c5f618e 100644
--- a/sepolicy/untrusted_app.te
+++ b/sepolicy/untrusted_app.te
@@ -2,8 +2,8 @@
 # OmniROM common sepolicy
 
 # exfat OTG
-userdebug_or_eng(`allow untrusted_app mnt_media_rw_file:dir getattr;'
-`allow untrusted_app asec_apk_file:dir getattr;'
-`allow untrusted_app fuse_device:file { getattr read write open };'
-`allow untrusted_app fuse_device:dir { search };')
+allow untrusted_app mnt_media_rw_file:dir getattr;
+allow untrusted_app asec_apk_file:dir getattr;
+allow untrusted_app fuse_device:file { getattr read write open };
+allow untrusted_app fuse_device:dir { search };
 
diff --git a/sepolicy/untrusted_app_25.te b/sepolicy/untrusted_app_25.te
new file mode 100644
index 0000000..ff56ae7
--- /dev/null
+++ b/sepolicy/untrusted_app_25.te
@@ -0,0 +1,5 @@
+allow untrusted_app mnt_media_rw_file:dir getattr;
+allow untrusted_app asec_apk_file:dir getattr;
+allow untrusted_app fuse_device:file { getattr read write open };
+allow untrusted_app fuse_device:dir { search };
+