iPaulPro / aFileChooser

[DEPRECATED] Android library that provides a file explorer to let users select files on external storage.
Apache License 2.0
1.79k stars 850 forks source link

Disabling Google Drive from menu #52

Closed ericlokness closed 9 years ago

ericlokness commented 9 years ago

I have been looking around but can't find an answer. Is there an easy way to simply disabling Google Drive from displaying in the fileChooser? That would be a much more simple solution if it is causing an error.

svenoaks commented 9 years ago

intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);

ericlokness commented 9 years ago

Thanks svenoaks! This works great. I even still have access to local DropBox files.

myflashlab commented 9 years ago

Thanks for the hint @svenoaks