[Android] Devices: there are no reasons to not support ntfs or ext* partitions

Jean-Baptiste Kempf git at videolan.org
Wed Jan 21 15:44:24 CET 2015


vlc-ports/android | branch: 1.0.x | Jean-Baptiste Kempf <jb at videolan.org> | Thu Dec 11 15:56:18 2014 +0100| [60a6b8e6faee1e93aff3727bdd83435a7ec43a46] | committer: Jean-Baptiste Kempf

Devices: there are no reasons to not support ntfs or ext* partitions

If the OS mounts them, we can access them.

> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=60a6b8e6faee1e93aff3727bdd83435a7ec43a46
---

 vlc-android/src/org/videolan/vlc/util/AndroidDevices.java |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vlc-android/src/org/videolan/vlc/util/AndroidDevices.java b/vlc-android/src/org/videolan/vlc/util/AndroidDevices.java
index 88b7073..d3028a3 100644
--- a/vlc-android/src/org/videolan/vlc/util/AndroidDevices.java
+++ b/vlc-android/src/org/videolan/vlc/util/AndroidDevices.java
@@ -87,7 +87,7 @@ public class AndroidDevices {
         ArrayList<String> list = new ArrayList<String>();
         list.add(Environment.getExternalStorageDirectory().getPath());
 
-        List<String> typeWL = Arrays.asList("vfat", "exfat", "sdcardfs", "fuse");
+        List<String> typeWL = Arrays.asList("vfat", "exfat", "sdcardfs", "fuse", "ntfs", "fat32", "ext3", "ext4");
         List<String> typeBL = Arrays.asList("tmpfs");
         String[] mountWL = { "/mnt", "/Removable" };
         String[] mountBL = {



More information about the Android mailing list