diff options
Diffstat (limited to 'overlay')
-rwxr-xr-x | overlay/frameworks/base/core/res/res/xml/storage_list.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/overlay/frameworks/base/core/res/res/xml/storage_list.xml b/overlay/frameworks/base/core/res/res/xml/storage_list.xml index d2af288..2040601 100755 --- a/overlay/frameworks/base/core/res/res/xml/storage_list.xml +++ b/overlay/frameworks/base/core/res/res/xml/storage_list.xml @@ -36,15 +36,18 @@ <storage android:mountPoint="/mnt/sdcard" android:storageDescription="@string/storage_usb" android:primary="true" - android:removable="false" /> + android:removable="false" + android:allowMassStorage="true" /> <storage android:mountPoint="/mnt/sdcard/extStorages/SdCard" android:storageDescription="@string/storage_sd_card" android:primary="false" - android:removable="true" /> + android:removable="true" + android:allowMassStorage="true" /> <storage android:mountPoint="/mnt/sdcard/extStorages/UsbDisk" android:storageDescription="@string/storage_usb" android:primary="false" - android:removable="true" /> + android:removable="true" + android:allowMassStorage="true" /> </StorageList> |