I want to browse files and select any one . I am using following code
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivityForResult(intent, FILE_SELECTED);
This code shows list of file explorer applications on the device along with google drive and dropbox, but I dont want to show google drive and dropbox. How to filter google drive and dropbox ?