From 13893546a4f410db84d8cb19286ba1cb326c953a Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Sat, 1 Mar 2014 01:01:48 +0100 Subject: [PATCH] set more precise type for file chooser intent --- mobile/src/com/cradle/iitc_mobile/IITC_FileManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/src/com/cradle/iitc_mobile/IITC_FileManager.java b/mobile/src/com/cradle/iitc_mobile/IITC_FileManager.java index 21372dff..f2933755 100644 --- a/mobile/src/com/cradle/iitc_mobile/IITC_FileManager.java +++ b/mobile/src/com/cradle/iitc_mobile/IITC_FileManager.java @@ -335,7 +335,7 @@ public class IITC_FileManager { // create the chooser Intent final Intent target = new Intent(Intent.ACTION_GET_CONTENT) - .setType("*/*") + .setType("file/*") .addCategory(Intent.CATEGORY_OPENABLE); final IITC_Mobile iitc = (IITC_Mobile) mActivity;