├── .gitignore ├── FileManager ├── .classpath ├── .project ├── build.gradle ├── build.properties ├── build.xml ├── proguard.cfg ├── project.properties ├── readme.txt ├── src │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── org │ │ │ └── openintents │ │ │ └── filemanager │ │ │ └── test │ │ │ ├── ActivityResultTestRule.java │ │ │ ├── BaseTestFileManager.java │ │ │ ├── DirectoryScannerIdlingResource.java │ │ │ ├── TestActivityTestRule.java │ │ │ ├── TestFileManagerActivity.java │ │ │ ├── TestFileManagerActivityWithIntents.java │ │ │ ├── TestIntentFilterActivityForPickFile.java │ │ │ ├── TestPickFilePathHistory.java │ │ │ ├── TestPickFileResult.java │ │ │ ├── TestSaveAsActivity.java │ │ │ └── TestViewFolderIntent.java │ ├── foss │ │ └── AndroidManifest.xml │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── openintents │ │ │ │ ├── filemanager │ │ │ │ ├── FileHolderListAdapter.java │ │ │ │ ├── FileManagerActivity.java │ │ │ │ ├── FileManagerApplication.java │ │ │ │ ├── FileManagerProvider.java │ │ │ │ ├── IntentFilterActivity.java │ │ │ │ ├── MultiselectFileHolderListAdapter.java │ │ │ │ ├── PausableThreadPoolExecutor.java │ │ │ │ ├── PreferenceActivity.java │ │ │ │ ├── PreferenceFragment.java │ │ │ │ ├── SaveAsActivity.java │ │ │ │ ├── ThumbnailLoader.java │ │ │ │ ├── bookmarks │ │ │ │ │ ├── BookmarkListActivity.java │ │ │ │ │ ├── BookmarkListAdapter.java │ │ │ │ │ ├── BookmarkListFragment.java │ │ │ │ │ └── BookmarksProvider.java │ │ │ │ ├── compatibility │ │ │ │ │ ├── BookmarkListActionHandler.java │ │ │ │ │ ├── BookmarkMultiChoiceModeHelper.java │ │ │ │ │ ├── FileMultiChoiceModeHelper.java │ │ │ │ │ ├── HomeIconHelper.java │ │ │ │ │ ├── ListViewMethodHelper.java │ │ │ │ │ └── SoftKeyboard.java │ │ │ │ ├── dialogs │ │ │ │ │ ├── CreateDirectoryDialog.java │ │ │ │ │ ├── DetailsDialog.java │ │ │ │ │ ├── MultiCompressDialog.java │ │ │ │ │ ├── MultiDeleteDialog.java │ │ │ │ │ ├── OverwriteFileDialog.java │ │ │ │ │ ├── RenameDialog.java │ │ │ │ │ ├── SingleCompressDialog.java │ │ │ │ │ └── SingleDeleteDialog.java │ │ │ │ ├── files │ │ │ │ │ ├── DirectoryContents.java │ │ │ │ │ ├── DirectoryScanner.java │ │ │ │ │ └── FileHolder.java │ │ │ │ ├── lists │ │ │ │ │ ├── FileListFragment.java │ │ │ │ │ ├── MultiselectListFragment.java │ │ │ │ │ ├── PickFileListFragment.java │ │ │ │ │ └── SimpleFileListFragment.java │ │ │ │ ├── search │ │ │ │ │ ├── RecentsSuggestionsProvider.java │ │ │ │ │ ├── SearchCore.java │ │ │ │ │ ├── SearchListAdapter.java │ │ │ │ │ ├── SearchResultsProvider.java │ │ │ │ │ ├── SearchService.java │ │ │ │ │ ├── SearchSuggestionsProvider.java │ │ │ │ │ └── SearchableActivity.java │ │ │ │ ├── util │ │ │ │ │ ├── CompressManager.java │ │ │ │ │ ├── CopyHelper.java │ │ │ │ │ ├── ExtractManager.java │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ ├── ImageUtils.java │ │ │ │ │ ├── MediaScannerUtils.java │ │ │ │ │ ├── MenuUtils.java │ │ │ │ │ ├── MimeTypeParser.java │ │ │ │ │ ├── MimeTypes.java │ │ │ │ │ └── UIUtils.java │ │ │ │ └── view │ │ │ │ │ ├── CheckableFileListItem.java │ │ │ │ │ ├── LegacyActionContainer.java │ │ │ │ │ ├── MenuBuilder.java │ │ │ │ │ ├── MenuItemImpl.java │ │ │ │ │ ├── PathBar.java │ │ │ │ │ ├── PathButtonLayout.java │ │ │ │ │ ├── PickBar.java │ │ │ │ │ └── ViewHolder.java │ │ │ │ ├── intents │ │ │ │ └── FileManagerIntents.java │ │ │ │ └── util │ │ │ │ └── MenuIntentOptionsWithIcons.java │ │ └── res │ │ │ ├── anim │ │ │ ├── accelerate_interpolator.xml │ │ │ ├── decelerate_interpolator.xml │ │ │ ├── fade_in.xml │ │ │ └── fade_out.xml │ │ │ ├── drawable-hdpi-v11 │ │ │ ├── ic_action_about.png │ │ │ ├── ic_action_bookmarks.png │ │ │ ├── ic_action_create_folder.png │ │ │ ├── ic_action_details.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_rename.png │ │ │ ├── ic_action_search.png │ │ │ └── ic_action_settings.png │ │ │ ├── drawable-hdpi-v5 │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_folder.png │ │ │ ├── ic_launcher_home.png │ │ │ ├── ic_launcher_home_small.png │ │ │ ├── ic_launcher_sdcard.png │ │ │ └── ic_launcher_sdcard_small.png │ │ │ ├── drawable-hdpi │ │ │ ├── bg_textfield_light_activated.9.png │ │ │ ├── bg_textfield_light_normal.9.png │ │ │ ├── bg_top_bar_dark.9.png │ │ │ ├── ic_action_bookmarks.png │ │ │ ├── ic_action_check_all.png │ │ │ ├── ic_action_compress.png │ │ │ ├── ic_action_copy.png │ │ │ ├── ic_action_create_folder.png │ │ │ ├── ic_action_create_shortcut.png │ │ │ ├── ic_action_cut.png │ │ │ ├── ic_action_delete.png │ │ │ ├── ic_action_details.png │ │ │ ├── ic_action_mark.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_rename.png │ │ │ ├── ic_action_search.png │ │ │ ├── ic_action_send.png │ │ │ ├── ic_action_settings.png │ │ │ ├── ic_action_uncheck_all.png │ │ │ ├── ic_launcher_android_package.png │ │ │ ├── ic_launcher_archive.png │ │ │ ├── ic_launcher_audio.png │ │ │ ├── ic_launcher_file.png │ │ │ ├── ic_launcher_image.png │ │ │ ├── ic_launcher_shortcut.png │ │ │ ├── ic_launcher_text_csv.png │ │ │ ├── ic_launcher_text_html.png │ │ │ ├── ic_launcher_text_plain.png │ │ │ ├── ic_launcher_text_xml.png │ │ │ ├── ic_launcher_video.png │ │ │ ├── ic_navbar_accept.png │ │ │ ├── ic_navbar_edit.png │ │ │ ├── ic_navbar_home.png │ │ │ └── ic_navbar_sdcard.png │ │ │ ├── drawable-ldpi-v11 │ │ │ ├── ic_action_about.png │ │ │ ├── ic_action_bookmarks.png │ │ │ ├── ic_action_create_folder.png │ │ │ ├── ic_action_details.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_rename.png │ │ │ ├── ic_action_search.png │ │ │ └── ic_action_settings.png │ │ │ ├── drawable-ldpi-v5 │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_folder.png │ │ │ ├── ic_launcher_home.png │ │ │ ├── ic_launcher_home_small.png │ │ │ ├── ic_launcher_sdcard.png │ │ │ └── ic_launcher_sdcard_small.png │ │ │ ├── drawable-ldpi │ │ │ ├── ic_action_bookmarks.png │ │ │ ├── ic_action_check_all.png │ │ │ ├── ic_action_compress.png │ │ │ ├── ic_action_copy.png │ │ │ ├── ic_action_create_folder.png │ │ │ ├── ic_action_create_shortcut.png │ │ │ ├── ic_action_cut.png │ │ │ ├── ic_action_delete.png │ │ │ ├── ic_action_details.png │ │ │ ├── ic_action_mark.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_rename.png │ │ │ ├── ic_action_search.png │ │ │ ├── ic_action_send.png │ │ │ ├── ic_action_settings.png │ │ │ ├── ic_action_uncheck_all.png │ │ │ ├── ic_launcher_android_package.png │ │ │ ├── ic_launcher_archive.png │ │ │ ├── ic_launcher_audio.png │ │ │ ├── ic_launcher_file.png │ │ │ ├── ic_launcher_image.png │ │ │ ├── ic_launcher_shortcut.png │ │ │ ├── ic_launcher_text_csv.png │ │ │ ├── ic_launcher_text_html.png │ │ │ ├── ic_launcher_text_plain.png │ │ │ ├── ic_launcher_text_xml.png │ │ │ ├── ic_launcher_video.png │ │ │ ├── ic_navbar_accept.png │ │ │ ├── ic_navbar_edit.png │ │ │ ├── ic_navbar_home.png │ │ │ └── ic_navbar_sdcard.png │ │ │ ├── drawable-mdpi-v11 │ │ │ ├── ic_action_about.png │ │ │ ├── ic_action_bookmarks.png │ │ │ ├── ic_action_create_folder.png │ │ │ ├── ic_action_details.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_rename.png │ │ │ ├── ic_action_search.png │ │ │ └── ic_action_settings.png │ │ │ ├── drawable-mdpi-v5 │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_folder.png │ │ │ ├── ic_launcher_home.png │ │ │ ├── ic_launcher_home_small.png │ │ │ ├── ic_launcher_sdcard.png │ │ │ └── ic_launcher_sdcard_small.png │ │ │ ├── drawable-mdpi │ │ │ ├── ab_solid_dark_holo.9.png │ │ │ ├── bg_pathbar_light.9.png │ │ │ ├── bg_textfield_light_activated.9.png │ │ │ ├── bg_textfield_light_normal.9.png │ │ │ ├── bg_top_bar_dark.9.png │ │ │ ├── ic_action_bookmarks.png │ │ │ ├── ic_action_check_all.png │ │ │ ├── ic_action_compress.png │ │ │ ├── ic_action_copy.png │ │ │ ├── ic_action_create_folder.png │ │ │ ├── ic_action_create_shortcut.png │ │ │ ├── ic_action_cut.png │ │ │ ├── ic_action_delete.png │ │ │ ├── ic_action_details.png │ │ │ ├── ic_action_mark.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_rename.png │ │ │ ├── ic_action_search.png │ │ │ ├── ic_action_send.png │ │ │ ├── ic_action_settings.png │ │ │ ├── ic_action_uncheck_all.png │ │ │ ├── ic_launcher_android_package.png │ │ │ ├── ic_launcher_archive.png │ │ │ ├── ic_launcher_audio.png │ │ │ ├── ic_launcher_file.png │ │ │ ├── ic_launcher_image.png │ │ │ ├── ic_launcher_shortcut.png │ │ │ ├── ic_launcher_text_csv.png │ │ │ ├── ic_launcher_text_html.png │ │ │ ├── ic_launcher_text_plain.png │ │ │ ├── ic_launcher_text_xml.png │ │ │ ├── ic_launcher_video.png │ │ │ ├── ic_menu_moreoverflow_normal_holo_dark.png │ │ │ ├── ic_navbar_accept.png │ │ │ ├── ic_navbar_edit.png │ │ │ ├── ic_navbar_home.png │ │ │ └── ic_navbar_sdcard.png │ │ │ ├── drawable-v8 │ │ │ └── bg_pathbar_btn.xml │ │ │ ├── drawable-xhdpi-v11 │ │ │ ├── ic_action_about.png │ │ │ ├── ic_action_bookmarks.png │ │ │ ├── ic_action_create_folder.png │ │ │ ├── ic_action_details.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_rename.png │ │ │ ├── ic_action_search.png │ │ │ └── ic_action_settings.png │ │ │ ├── drawable-xhdpi-v5 │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_folder.png │ │ │ ├── ic_launcher_home.png │ │ │ ├── ic_launcher_home_small.png │ │ │ ├── ic_launcher_sdcard.png │ │ │ └── ic_launcher_sdcard_small.png │ │ │ ├── drawable-xhdpi │ │ │ ├── bg_textfield_light_activated.9.png │ │ │ ├── bg_textfield_light_normal.9.png │ │ │ ├── bg_top_bar_dark.9.png │ │ │ ├── ic_action_check_all.png │ │ │ ├── ic_action_compress.png │ │ │ ├── ic_action_copy.png │ │ │ ├── ic_action_create_shortcut.png │ │ │ ├── ic_action_cut.png │ │ │ ├── ic_action_delete.png │ │ │ ├── ic_action_paste.png │ │ │ ├── ic_action_send.png │ │ │ ├── ic_action_uncheck_all.png │ │ │ ├── ic_launcher_android_package.png │ │ │ ├── ic_launcher_archive.png │ │ │ ├── ic_launcher_audio.png │ │ │ ├── ic_launcher_file.png │ │ │ ├── ic_launcher_image.png │ │ │ ├── ic_launcher_shortcut.png │ │ │ ├── ic_launcher_text_csv.png │ │ │ ├── ic_launcher_text_html.png │ │ │ ├── ic_launcher_text_plain.png │ │ │ ├── ic_launcher_text_xml.png │ │ │ ├── ic_launcher_video.png │ │ │ ├── ic_navbar_accept.png │ │ │ ├── ic_navbar_edit.png │ │ │ ├── ic_navbar_home.png │ │ │ └── ic_navbar_sdcard.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ ├── bg_action_container_button.xml │ │ │ ├── bg_pathbar_btn.xml │ │ │ ├── bg_pathbar_btn_standard_focused.9.png │ │ │ ├── bg_pathbar_btn_standard_normal.9.png │ │ │ ├── bg_pathbar_btn_standard_pressed.9.png │ │ │ ├── bg_textfield_light.xml │ │ │ ├── bg_top_bar_light.9.png │ │ │ ├── ic_button_checked.png │ │ │ ├── ic_button_unchecked.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_folder.png │ │ │ ├── ic_launcher_folder_open.png │ │ │ ├── ic_launcher_home.png │ │ │ ├── ic_launcher_home_small.png │ │ │ ├── ic_launcher_map.xml │ │ │ ├── ic_launcher_sdcard.png │ │ │ ├── ic_launcher_sdcard_small.png │ │ │ ├── list_background_dark_actual.9.png │ │ │ ├── list_background_light_actual.9.png │ │ │ └── select_all.xml │ │ │ ├── layout │ │ │ ├── activity_filemanager.xml │ │ │ ├── dialog_details.xml │ │ │ ├── dialog_text_input.xml │ │ │ ├── dialog_warning.xml │ │ │ ├── filelist.xml │ │ │ ├── filelist_browse.xml │ │ │ ├── filelist_legacy_multiselect.xml │ │ │ ├── filelist_pick.xml │ │ │ ├── item_filelist.xml │ │ │ └── item_filelist_multiselect.xml │ │ │ ├── menu │ │ │ ├── bookmarks.xml │ │ │ ├── context.xml │ │ │ ├── context_pick.xml │ │ │ ├── main.xml │ │ │ ├── multiselect.xml │ │ │ ├── options_multiselect.xml │ │ │ └── simple_file_list.xml │ │ │ ├── raw-ko │ │ │ └── recent_changes.txt │ │ │ ├── raw │ │ │ └── recent_changes.txt │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fo │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-large-land │ │ │ └── dimensions.xml │ │ │ ├── values-large │ │ │ ├── dimensions.xml │ │ │ ├── list_background_dark.xml │ │ │ └── list_background_light.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-oc │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-sc │ │ │ └── strings.xml │ │ │ ├── values-sd │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw600dp-land │ │ │ └── dimensions.xml │ │ │ ├── values-sw600dp │ │ │ ├── dimensions.xml │ │ │ ├── list_background_dark.xml │ │ │ └── list_background_light.xml │ │ │ ├── values-sw720dp │ │ │ └── dimensions.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-ug │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-v11 │ │ │ └── themes.xml │ │ │ ├── values-v14 │ │ │ └── themes.xml │ │ │ ├── values-xlarge │ │ │ └── dimensions.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values │ │ │ ├── arrays.xml │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimensions.xml │ │ │ ├── donottranslate.xml │ │ │ ├── ids.xml │ │ │ ├── list_background_dark.xml │ │ │ ├── list_background_light.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── about.xml │ │ │ ├── file_paths.xml │ │ │ ├── mimetypes.xml │ │ │ ├── preferences.xml │ │ │ └── searchable.xml │ └── play │ │ └── AndroidManifest.xml └── template of build-private.properties ├── FileManagerDemo ├── .classpath ├── .project ├── AndroidManifest.xml ├── build.gradle ├── project.properties ├── readme.txt ├── res │ ├── drawable │ │ ├── ic_launcher_folder.png │ │ ├── ic_launcher_folder_small.png │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── org │ └── openintents │ ├── filemanager │ └── demo │ │ └── Demo.java │ └── intents │ └── FileManagerIntents.java ├── LICENSE.txt ├── README.md ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icons ├── Icons of redesign │ ├── Gingerbread │ │ ├── ic_action_bookmarks.png │ │ ├── ic_action_check_all.png │ │ ├── ic_action_compress.png │ │ ├── ic_action_copy.png │ │ ├── ic_action_create_folder.png │ │ ├── ic_action_cut.png │ │ ├── ic_action_delete.png │ │ ├── ic_action_details.png │ │ ├── ic_action_paste.png │ │ ├── ic_action_rename.png │ │ ├── ic_action_send.png │ │ └── ic_action_uncheck_all.png │ ├── README.txt │ ├── ic_action_about.png │ ├── ic_action_bookmarks.png │ ├── ic_action_compress.png │ ├── ic_action_copy.png │ ├── ic_action_create_folder.png │ ├── ic_action_create_shortcut.png │ ├── ic_action_cut.png │ ├── ic_action_delete.png │ ├── ic_action_details.png │ ├── ic_action_paste.png │ ├── ic_action_rename.png │ ├── ic_action_search.png │ ├── ic_action_send.png │ └── ic_action_settings.png ├── Unused │ ├── ic_menu_add_folder │ │ ├── ic_menu_add_folder_holo_dark │ │ │ ├── hdpi │ │ │ │ └── ic_menu_add_folder.png │ │ │ ├── ic_menu_add_folder.svg │ │ │ ├── ldpi │ │ │ │ └── ic_menu_add_folder.png │ │ │ ├── mdpi │ │ │ │ └── ic_menu_add_folder.png │ │ │ └── xhdpi │ │ │ │ └── ic_menu_add_folder.png │ │ └── ic_menu_add_folder_holo_light │ │ │ ├── hdpi │ │ │ └── ic_menu_add_folder.png │ │ │ ├── ic_menu_add_folder.svg │ │ │ ├── ldpi │ │ │ └── ic_menu_add_folder.png │ │ │ ├── mdpi │ │ │ └── ic_menu_add_folder.png │ │ │ └── xhdpi │ │ │ └── ic_menu_add_folder.png │ ├── ic_menu_folder │ │ ├── ic_menu_folder_holo_dark │ │ │ ├── hdpi │ │ │ │ └── ic_menu_folder.png │ │ │ ├── ic_menu_folder.svg │ │ │ ├── ldpi │ │ │ │ └── ic_menu_folder.png │ │ │ ├── mdpi │ │ │ │ └── ic_menu_folder.png │ │ │ └── xhdpi │ │ │ │ └── ic_menu_folder.png │ │ └── ic_menu_folder_holo_light │ │ │ ├── hdpi │ │ │ └── ic_menu_folder.png │ │ │ ├── ic_menu_folder.svg │ │ │ ├── ldpi │ │ │ └── ic_menu_folder.png │ │ │ ├── mdpi │ │ │ └── ic_menu_folder.png │ │ │ └── xhdpi │ │ │ └── ic_menu_folder.png │ ├── ic_menu_multiselect │ │ ├── ic_menu_multiselect_holo_dark │ │ │ ├── hdpi │ │ │ │ └── ic_menu_multiselect.png │ │ │ ├── ic_menu_multiselect.svg │ │ │ ├── ldpi │ │ │ │ └── ic_menu_multiselect.png │ │ │ ├── mdpi │ │ │ │ └── ic_menu_multiselect.png │ │ │ └── xhdpi │ │ │ │ └── ic_menu_multiselect.png │ │ └── ic_menu_multiselect_holo_light │ │ │ ├── hdpi │ │ │ └── ic_menu_multiselect.png │ │ │ ├── ic_menu_multiselect.svg │ │ │ ├── ldpi │ │ │ └── ic_menu_multiselect.png │ │ │ ├── mdpi │ │ │ └── ic_menu_multiselect.png │ │ │ └── xhdpi │ │ │ └── ic_menu_multiselect.png │ ├── ic_menu_scan_exclude │ │ ├── holo_dark │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_menu_scan_exclude.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_menu_scan_exclude.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_menu_scan_exclude.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_menu_scan_exclude.png │ │ │ └── ic_menu_scan_exclude.svg │ │ └── holo_light │ │ │ ├── drawable-hdpi │ │ │ └── ic_menu_scan_exclude.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_menu_scan_exclude.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_menu_scan_exclude.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_menu_scan_exclude.png │ │ │ └── ic_menu_scan_exclude.svg │ └── ic_menu_scan_include │ │ ├── holo_dark │ │ ├── drawable-hdpi │ │ │ └── ic_menu_scan_include.png │ │ ├── drawable-ldpi │ │ │ └── ic_menu_scan_include.png │ │ ├── drawable-mdpi │ │ │ └── ic_menu_scan_include.png │ │ ├── drawable-xhdpi │ │ │ └── ic_menu_scan_include.png │ │ └── ic_menu_scan_include.svg │ │ └── holo_light │ │ ├── drawable-hdpi │ │ └── ic_menu_scan_include.png │ │ ├── drawable-ldpi │ │ └── ic_menu_scan_include.png │ │ ├── drawable-mdpi │ │ └── ic_menu_scan_include.png │ │ ├── drawable-xhdpi │ │ └── ic_menu_scan_include.png │ │ └── ic_menu_scan_include.svg ├── ic_launcher_android_package │ ├── drawable-hdpi │ │ └── ic_launcher_android_package.png │ ├── drawable-ldpi │ │ └── ic_launcher_android_package.png │ ├── drawable-mdpi │ │ └── ic_launcher_android_package.png │ ├── drawable-xhdpi │ │ └── ic_launcher_android_package.png │ └── ic_launcher_android_package.svg ├── ic_launcher_archive │ ├── hdpi │ │ └── ic_launcher_archive.png │ ├── ic_launcher_archive.svg │ ├── ldpi │ │ └── ic_launcher_archive.png │ ├── mdpi │ │ └── ic_launcher_archive.png │ └── xhdpi │ │ └── ic_launcher_archive.png ├── ic_launcher_audio │ ├── drawable-hdpi │ │ └── ic_launcher_audio.png │ ├── drawable-ldpi │ │ └── ic_launcher_audio.png │ ├── drawable-mdpi │ │ └── ic_launcher_audio.png │ ├── drawable-xhdpi │ │ └── ic_launcher_audio.png │ └── ic_launcher_audio.svg ├── ic_launcher_file │ ├── drawable-hdpi │ │ └── ic_launcher_file.png │ ├── drawable-ldpi │ │ └── ic_launcher_file.png │ ├── drawable-mdpi │ │ └── ic_launcher_file.png │ ├── drawable-xhdpi │ │ └── ic_launcher_file.png │ └── ic_launcher_file.svg ├── ic_launcher_folder │ ├── hdpi │ │ └── ic_launcher_folder.png │ ├── ic_launcher_folder.svg │ ├── ldpi │ │ └── ic_launcher_folder.png │ ├── mdpi │ │ └── ic_launcher_folder.png │ └── xhdpi │ │ └── ic_launcher_folder.png ├── ic_launcher_home │ ├── hdpi │ │ └── ic_launcher_home.png │ ├── ic_launcher_home.svg │ ├── ldpi │ │ └── ic_launcher_home.png │ ├── mdpi │ │ └── ic_launcher_home.png │ └── xhdpi │ │ └── ic_launcher_home.png ├── ic_launcher_image │ ├── drawable-hdpi │ │ └── ic_launcher_image.png │ ├── drawable-ldpi │ │ └── ic_launcher_image.png │ ├── drawable-mdpi │ │ └── ic_launcher_image.png │ ├── drawable-xhdpi │ │ └── ic_launcher_image.png │ └── ic_launcher_image.svg ├── ic_launcher_image_old1 │ ├── hdpi │ │ └── ic_launcher_image.png │ ├── ic_launcher_image.svg │ ├── ldpi │ │ └── ic_launcher_image.png │ ├── mdpi │ │ └── ic_launcher_image.png │ └── xhdpi │ │ └── ic_launcher_image.png ├── ic_launcher_microsd │ ├── hdpi │ │ └── ic_launcher_microsd.png │ ├── ic_launcher_microsd.svg │ ├── ldpi │ │ └── ic_launcher_microsd.png │ ├── mdpi │ │ └── ic_launcher_microsd.png │ └── xhdpi │ │ └── ic_launcher_microsd.png ├── ic_launcher_sdcard │ ├── drawable-hdpi │ │ └── ic_launcher_sdcard.png │ ├── drawable-ldpi │ │ └── ic_launcher_sdcard.png │ ├── drawable-mdpi │ │ └── ic_launcher_sdcard.png │ ├── drawable-xhdpi │ │ └── ic_launcher_sdcard.png │ └── ic_launcher_sdcard.svg ├── ic_launcher_text_csv │ ├── drawable-hdpi │ │ └── ic_launcher_text_csv.png │ ├── drawable-ldpi │ │ └── ic_launcher_text_csv.png │ ├── drawable-mdpi │ │ └── ic_launcher_text_csv.png │ ├── drawable-xhdpi │ │ └── ic_launcher_text_csv.png │ └── ic_launcher_text_csv.svg ├── ic_launcher_text_html │ ├── hdpi │ │ └── ic_launcher_text_html.png │ ├── ic_launcher_text_html.svg │ ├── ldpi │ │ └── ic_launcher_text_html.png │ ├── mdpi │ │ └── ic_launcher_text_html.png │ └── xhdpi │ │ └── ic_launcher_text_html.png ├── ic_launcher_text_plain │ ├── hdpi │ │ └── ic_launcher_text_plain.png │ ├── ic_launcher_text_plain.svg │ ├── ldpi │ │ └── ic_launcher_text_plain.png │ ├── mdpi │ │ └── ic_launcher_text_plain.png │ └── xhdpi │ │ └── ic_launcher_text_plain.png ├── ic_launcher_text_xml │ ├── drawable-hdpi │ │ └── ic_launcher_text_xml.png │ ├── drawable-ldpi │ │ └── ic_launcher_text_xml.png │ ├── drawable-mdpi │ │ └── ic_launcher_text_xml.png │ ├── drawable-xhdpi │ │ └── ic_launcher_text_xml.png │ └── ic_launcher_text_xml.svg ├── ic_launcher_video │ ├── hdpi │ │ └── ic_launcher_video.png │ ├── ic_launcher_video.svg │ ├── ldpi │ │ └── ic_launcher_video.png │ ├── mdpi │ │ └── ic_launcher_video.png │ └── xhdpi │ │ └── ic_launcher_video.png └── readme.txt ├── promotion ├── OIFM site screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── blackberry_appworld │ ├── blackberry_launcher_filemanager.png │ ├── filemanager_promo_1920x1186.png │ └── screenshots │ │ └── OIFileManager01.png ├── description │ ├── description.txt │ ├── description_extensions.txt │ └── translations │ │ ├── application_names.txt │ │ ├── description-ar.txt │ │ ├── description-az.txt │ │ ├── description-be.txt │ │ ├── description-bg.txt │ │ ├── description-bs.txt │ │ ├── description-ca.txt │ │ ├── description-cs.txt │ │ ├── description-da.txt │ │ ├── description-de.txt │ │ ├── description-el.txt │ │ ├── description-en-rGB.txt │ │ ├── description-en.txt │ │ ├── description-es.txt │ │ ├── description-fa.txt │ │ ├── description-fi.txt │ │ ├── description-fo.txt │ │ ├── description-fr.txt │ │ ├── description-hi.txt │ │ ├── description-hr.txt │ │ ├── description-hu.txt │ │ ├── description-it.txt │ │ ├── description-iw.txt │ │ ├── description-ja.txt │ │ ├── description-ko.txt │ │ ├── description-lo.txt │ │ ├── description-lv.txt │ │ ├── description-mk.txt │ │ ├── description-nb.txt │ │ ├── description-nl.txt │ │ ├── description-oc.txt │ │ ├── description-pa.txt │ │ ├── description-pl.txt │ │ ├── description-pt-rBR.txt │ │ ├── description-pt.txt │ │ ├── description-ro.txt │ │ ├── description-ru.txt │ │ ├── description-sc.txt │ │ ├── description-sd.txt │ │ ├── description-sk.txt │ │ ├── description-sl.txt │ │ ├── description-sv.txt │ │ ├── description-tl.txt │ │ ├── description-tr.txt │ │ ├── description-ug.txt │ │ ├── description-uk.txt │ │ ├── description-v11.txt │ │ ├── description-v14.txt │ │ ├── description-zh-rCN.txt │ │ └── description-zh-rTW.txt ├── icons │ ├── README.txt │ ├── Small_refined │ │ ├── ic_launcher.png │ │ └── ic_launcher_shortcut.png │ ├── ic_launcher_ICS_fireworks.png │ └── ic_launcher_filemanager_512.png ├── market │ ├── README.txt │ ├── old │ │ ├── filemanager_promo.svg │ │ ├── filemanager_promo_1024x500.png │ │ └── filemanager_promo_180x120.png │ ├── promo_big.png │ └── promo_small.png └── screenshots │ ├── 2_3_browse.png │ ├── 2_3_multiple.png │ ├── 4.1_bookmarks.png │ ├── 4.1_browse.png │ ├── 4.1_multiselect.png │ └── 4.1_search_suggestion.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | build-private.properties 2 | local.properties 3 | release 4 | out 5 | *.iml 6 | .idea 7 | # built application files 8 | *.apk 9 | *.ap_ 10 | 11 | # files for the dex VM 12 | *.dex 13 | 14 | # Java class files 15 | *.class 16 | 17 | # generated files 18 | bin/ 19 | gen/ 20 | 21 | # Ignore gradle files 22 | .gradle/ 23 | build/ 24 | 25 | # Local configuration file (sdk path, etc) 26 | local.properties 27 | 28 | # Proguard folder generated by Eclipse 29 | proguard/ 30 | 31 | 32 | -------------------------------------------------------------------------------- /FileManager/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /FileManager/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OI File Manager 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /FileManager/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | # This file is only used by the Ant script. 6 | # You can use this to override default values such as 7 | # 'source.dir' for the location of your java source folder and 8 | # 'out.dir' for the location of your output folder. 9 | # You can also use it define how the release builds are signed by declaring 10 | # the following properties: 11 | # 'key.store' for the location of your keystore and 12 | # 'key.alias' for the name of the key to use. 13 | # The password will be asked during the build when you use the 'release' target. 14 | -------------------------------------------------------------------------------- /FileManager/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 19 | 20 | 23 | 24 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /FileManager/proguard.cfg: -------------------------------------------------------------------------------- 1 | -optimizationpasses 5 2 | -dontusemixedcaseclassnames 3 | -dontskipnonpubliclibraryclasses 4 | -dontpreverify 5 | -verbose 6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* 7 | 8 | -keep public class * extends android.app.Activity 9 | -keep public class * extends android.app.Application 10 | -keep public class * extends android.app.Service 11 | -keep public class * extends android.content.BroadcastReceiver 12 | -keep public class * extends android.content.ContentProvider 13 | -keep public class com.android.vending.licensing.ILicensingService 14 | 15 | -keepclasseswithmembernames class * { 16 | native ; 17 | } 18 | 19 | -keepclasseswithmembernames class * { 20 | public (android.content.Context, android.util.AttributeSet); 21 | } 22 | 23 | -keepclasseswithmembernames class * { 24 | public (android.content.Context, android.util.AttributeSet, int); 25 | } 26 | 27 | -keepclassmembers enum * { 28 | public static **[] values(); 29 | public static ** valueOf(java.lang.String); 30 | } 31 | 32 | -keep class * implements android.os.Parcelable { 33 | public static final android.os.Parcelable$Creator *; 34 | } 35 | -------------------------------------------------------------------------------- /FileManager/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | android.library.reference.1=../../distribution/DistributionLibrary 10 | # Project target. 11 | target=android-19 12 | -------------------------------------------------------------------------------- /FileManager/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FileManager/src/androidTest/java/org/openintents/filemanager/test/DirectoryScannerIdlingResource.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.test; 2 | 3 | import androidx.test.espresso.IdlingResource; 4 | 5 | import org.openintents.filemanager.FileManagerActivity; 6 | import org.openintents.filemanager.IntentFilterActivity; 7 | import org.openintents.filemanager.lists.PickFileListFragment; 8 | import org.openintents.filemanager.lists.SimpleFileListFragment; 9 | 10 | public class DirectoryScannerIdlingResource implements IdlingResource { 11 | private final SimpleFileListFragment fragment; 12 | private ResourceCallback callback; 13 | 14 | public DirectoryScannerIdlingResource(FileManagerActivity activity) { 15 | fragment = (SimpleFileListFragment) activity.getSupportFragmentManager().findFragmentByTag(FileManagerActivity.FRAGMENT_TAG); 16 | } 17 | 18 | public DirectoryScannerIdlingResource(IntentFilterActivity activity) { 19 | fragment = (SimpleFileListFragment) activity.getSupportFragmentManager().findFragmentByTag(PickFileListFragment.class.getName()); 20 | } 21 | 22 | @Override 23 | public String getName() { 24 | return DirectoryScannerIdlingResource.class.getName(); 25 | } 26 | 27 | @Override 28 | public boolean isIdleNow() { 29 | boolean idle = !fragment.isLoading(); 30 | if (idle && callback != null) { 31 | callback.onTransitionToIdle(); 32 | } 33 | return idle; 34 | } 35 | 36 | @Override 37 | public void registerIdleTransitionCallback(ResourceCallback callback) { 38 | this.callback = callback; 39 | fragment.setResourceCallback(callback); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /FileManager/src/androidTest/java/org/openintents/filemanager/test/TestFileManagerActivityWithIntents.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.test; 2 | 3 | import android.content.Intent; 4 | import android.net.Uri; 5 | import android.os.Environment; 6 | 7 | import androidx.test.espresso.assertion.ViewAssertions; 8 | import androidx.test.espresso.matcher.ViewMatchers; 9 | import androidx.test.rule.ActivityTestRule; 10 | import androidx.test.runner.AndroidJUnit4; 11 | 12 | import org.junit.BeforeClass; 13 | import org.junit.Rule; 14 | import org.junit.Test; 15 | import org.junit.runner.RunWith; 16 | import org.openintents.filemanager.FileManagerActivity; 17 | 18 | import java.io.IOException; 19 | 20 | @RunWith(AndroidJUnit4.class) 21 | public class TestFileManagerActivityWithIntents extends BaseTestFileManager { 22 | 23 | @Rule 24 | public ActivityTestRule rule = new ActivityTestRule(FileManagerActivity.class) { 25 | @Override 26 | protected Intent getActivityIntent() { 27 | Uri uri = Uri.parse("file://" + sdcardPath + "oi-filemanager-tests/oi-dir-to-open"); 28 | Intent intent = new Intent(Intent.ACTION_VIEW, uri); 29 | intent.setClassName("org.openintents.filemanager", 30 | FileManagerActivity.class.getCanonicalName()); 31 | intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 32 | return intent; 33 | } 34 | }; 35 | 36 | 37 | @BeforeClass 38 | public static void setup() throws IOException { 39 | sdcardPath = Environment.getExternalStorageDirectory().getAbsolutePath() + '/'; 40 | 41 | createDirectory(sdcardPath + TEST_DIRECTORY); 42 | createDirectory(sdcardPath + "oi-filemanager-tests/oi-dir-to-open"); 43 | createDirectory(sdcardPath + "oi-filemanager-tests/oi-dir-to-open/oi-intent"); 44 | } 45 | 46 | @Test 47 | public void testIntentUrl() throws IOException { 48 | checkFile("oi-intent", ViewAssertions.matches(ViewMatchers.isDisplayed())); 49 | } 50 | 51 | 52 | } 53 | -------------------------------------------------------------------------------- /FileManager/src/androidTest/java/org/openintents/filemanager/test/TestIntentFilterActivityForPickFile.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.test; 2 | 3 | import android.content.Intent; 4 | import android.net.Uri; 5 | import android.os.Environment; 6 | 7 | import androidx.test.espresso.assertion.ViewAssertions; 8 | import androidx.test.espresso.matcher.ViewMatchers; 9 | import androidx.test.rule.ActivityTestRule; 10 | import androidx.test.runner.AndroidJUnit4; 11 | 12 | import org.junit.BeforeClass; 13 | import org.junit.Rule; 14 | import org.junit.Test; 15 | import org.junit.runner.RunWith; 16 | import org.openintents.filemanager.IntentFilterActivity; 17 | import org.openintents.intents.FileManagerIntents; 18 | 19 | import java.io.IOException; 20 | 21 | @RunWith(AndroidJUnit4.class) 22 | public class TestIntentFilterActivityForPickFile extends BaseTestFileManager { 23 | 24 | @Rule 25 | public ActivityTestRule rule = new ActivityTestRule(IntentFilterActivity.class) { 26 | @Override 27 | protected Intent getActivityIntent() { 28 | Uri uri = Uri.parse("file://" + sdcardPath + TEST_DIRECTORY); 29 | Intent intent = new Intent(FileManagerIntents.ACTION_PICK_FILE, uri); 30 | intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 31 | return intent; 32 | } 33 | }; 34 | 35 | @BeforeClass 36 | public static void setup() throws IOException { 37 | sdcardPath = Environment.getExternalStorageDirectory().getAbsolutePath() + '/'; 38 | createDirectory(sdcardPath + TEST_DIRECTORY); 39 | createFile(sdcardPath + TEST_DIRECTORY + "/oi-pick-file", ""); 40 | } 41 | 42 | 43 | @Test 44 | public void testIntentDataIsUsedAsInitialDirectory() throws IOException { 45 | checkFile("oi-pick-file", ViewAssertions.matches(ViewMatchers.isDisplayed())); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /FileManager/src/foss/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/FileManagerApplication.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager; 2 | 3 | import android.app.Application; 4 | import android.content.Context; 5 | import android.content.pm.ApplicationInfo; 6 | import android.content.pm.PackageManager; 7 | 8 | import org.openintents.filemanager.util.CopyHelper; 9 | import org.openintents.filemanager.util.MimeTypes; 10 | 11 | public class FileManagerApplication extends Application { 12 | private CopyHelper mCopyHelper; 13 | 14 | public static boolean hideDonateMenu(Context context) { 15 | ApplicationInfo ai; 16 | try { 17 | ai = context.getPackageManager().getApplicationInfo(context.getPackageName(), PackageManager.GET_META_DATA); 18 | return ai.metaData.getBoolean("hideDonate"); 19 | } catch (PackageManager.NameNotFoundException e) { 20 | e.printStackTrace(); 21 | } 22 | return false; 23 | } 24 | 25 | @Override 26 | public void onCreate() { 27 | super.onCreate(); 28 | 29 | mCopyHelper = new CopyHelper(this); 30 | MimeTypes.initInstance(this); 31 | } 32 | 33 | public CopyHelper getCopyHelper() { 34 | return mCopyHelper; 35 | } 36 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/MultiselectFileHolderListAdapter.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager; 2 | 3 | import android.content.Context; 4 | import android.view.View; 5 | import android.widget.ImageView; 6 | import android.widget.TextView; 7 | 8 | import org.openintents.filemanager.files.FileHolder; 9 | import org.openintents.filemanager.view.CheckableFileListItem; 10 | import org.openintents.filemanager.view.ViewHolder; 11 | 12 | import java.util.List; 13 | 14 | /** 15 | * Extension of {@link FileHolderListAdapter} that displays checkable items. 16 | * 17 | * @author George Venios. 18 | */ 19 | public class MultiselectFileHolderListAdapter extends FileHolderListAdapter { 20 | public MultiselectFileHolderListAdapter(List files, Context c) { 21 | super(files, c, R.layout.item_filelist_multiselect); 22 | } 23 | 24 | @Override 25 | protected View newView() { 26 | View view = new CheckableFileListItem(getContext()); 27 | 28 | ViewHolder holder = new ViewHolder(); 29 | holder.icon = (ImageView) view.findViewById(R.id.icon); 30 | holder.primaryInfo = (TextView) view.findViewById(R.id.primary_info); 31 | holder.secondaryInfo = (TextView) view.findViewById(R.id.secondary_info); 32 | holder.tertiaryInfo = (TextView) view.findViewById(R.id.tertiary_info); 33 | 34 | view.setTag(holder); 35 | return view; 36 | } 37 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/PausableThreadPoolExecutor.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager; 2 | 3 | import java.util.concurrent.LinkedBlockingQueue; 4 | import java.util.concurrent.ThreadPoolExecutor; 5 | import java.util.concurrent.TimeUnit; 6 | import java.util.concurrent.locks.Condition; 7 | import java.util.concurrent.locks.ReentrantLock; 8 | 9 | public class PausableThreadPoolExecutor extends ThreadPoolExecutor { 10 | private boolean isPaused; 11 | private ReentrantLock pauseLock = new ReentrantLock(); 12 | private Condition unpaused = pauseLock.newCondition(); 13 | 14 | public PausableThreadPoolExecutor(int poolSize) { 15 | super(poolSize, poolSize, 16 | 0L, TimeUnit.MILLISECONDS, 17 | new LinkedBlockingQueue()); 18 | } 19 | 20 | protected void beforeExecute(Thread t, Runnable r) { 21 | super.beforeExecute(t, r); 22 | pauseLock.lock(); 23 | try { 24 | while (isPaused) unpaused.await(); 25 | } catch (InterruptedException ie) { 26 | t.interrupt(); 27 | } finally { 28 | pauseLock.unlock(); 29 | } 30 | } 31 | 32 | public void pause() { 33 | pauseLock.lock(); 34 | try { 35 | isPaused = true; 36 | } finally { 37 | pauseLock.unlock(); 38 | } 39 | } 40 | 41 | public void resume() { 42 | pauseLock.lock(); 43 | try { 44 | isPaused = false; 45 | unpaused.signalAll(); 46 | } finally { 47 | pauseLock.unlock(); 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/bookmarks/BookmarkListActivity.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.bookmarks; 2 | 3 | import android.content.Intent; 4 | import android.os.Build; 5 | import android.os.Bundle; 6 | import androidx.fragment.app.FragmentActivity; 7 | import android.view.MenuItem; 8 | 9 | import org.openintents.filemanager.compatibility.HomeIconHelper; 10 | import org.openintents.filemanager.util.UIUtils; 11 | 12 | public class BookmarkListActivity extends FragmentActivity { 13 | public static final String KEY_RESULT_PATH = "path"; 14 | private static final String FRAGMENT_TAG = "Fragment"; 15 | 16 | @Override 17 | protected void onCreate(Bundle savedInstanceState) { 18 | UIUtils.setThemeFor(this); 19 | super.onCreate(savedInstanceState); 20 | 21 | HomeIconHelper.activity_actionbar_setDisplayHomeAsUpEnabled(this); 22 | 23 | if (getSupportFragmentManager().findFragmentByTag(FRAGMENT_TAG) == null) { 24 | getSupportFragmentManager().beginTransaction() 25 | .add(android.R.id.content, new BookmarkListFragment(), FRAGMENT_TAG) 26 | .commit(); 27 | } 28 | } 29 | 30 | public void onListItemClick(String path) { 31 | setResult(RESULT_OK, new Intent().putExtra(KEY_RESULT_PATH, path)); 32 | finish(); 33 | } 34 | 35 | @Override 36 | public boolean onOptionsItemSelected(MenuItem item) { 37 | switch (item.getItemId()) { 38 | case android.R.id.home: 39 | HomeIconHelper.showHome(this); 40 | break; 41 | } 42 | return super.onOptionsItemSelected(item); 43 | } 44 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/compatibility/BookmarkMultiChoiceModeHelper.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.compatibility; 2 | 3 | import android.annotation.TargetApi; 4 | import android.content.Context; 5 | import android.os.Build; 6 | import android.view.Menu; 7 | import android.view.MenuItem; 8 | import android.widget.AbsListView.MultiChoiceModeListener; 9 | import android.widget.ListView; 10 | 11 | import org.openintents.filemanager.R; 12 | 13 | public class BookmarkMultiChoiceModeHelper { 14 | 15 | private BookmarkMultiChoiceModeHelper() { 16 | } 17 | 18 | @TargetApi(Build.VERSION_CODES.HONEYCOMB) 19 | public static void listView_setMultiChoiceModeListener(final ListView list, final Context context) { 20 | list.setMultiChoiceModeListener(new MultiChoiceModeListener() { 21 | 22 | @Override 23 | public boolean onPrepareActionMode(android.view.ActionMode mode, 24 | Menu menu) { 25 | return false; 26 | } 27 | 28 | @Override 29 | public void onDestroyActionMode(android.view.ActionMode mode) { 30 | } 31 | 32 | @Override 33 | public boolean onCreateActionMode(android.view.ActionMode mode, 34 | Menu menu) { 35 | mode.getMenuInflater().inflate(R.menu.bookmarks, menu); 36 | return true; 37 | } 38 | 39 | @Override 40 | public boolean onActionItemClicked(android.view.ActionMode mode, 41 | MenuItem item) { 42 | BookmarkListActionHandler.handleItemSelection(item, list); 43 | mode.finish(); 44 | return true; 45 | } 46 | 47 | @Override 48 | public void onItemCheckedStateChanged(android.view.ActionMode mode, 49 | int position, long id, boolean checked) { 50 | mode.setTitle(list.getCheckedItemCount() + " " + context.getResources().getString(R.string.selected)); 51 | } 52 | }); 53 | } 54 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/compatibility/HomeIconHelper.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.compatibility; 2 | 3 | import android.app.Activity; 4 | import android.content.Intent; 5 | 6 | import org.openintents.filemanager.FileManagerActivity; 7 | 8 | public class HomeIconHelper { 9 | private HomeIconHelper() { 10 | } 11 | 12 | public static void activity_actionbar_setHomeButtonEnabled(Activity act) { 13 | act.getActionBar().setHomeButtonEnabled(true); 14 | } 15 | 16 | public static void activity_actionbar_setDisplayHomeAsUpEnabled(Activity act) { 17 | if (act != null && act.getActionBar() != null) { 18 | act.getActionBar().setDisplayHomeAsUpEnabled(true); 19 | } 20 | } 21 | 22 | /** 23 | * Launch the home activity. 24 | * 25 | * @param act The currently displayed activity. 26 | */ 27 | public static void showHome(Activity act) { 28 | Intent intent = new Intent(act, FileManagerActivity.class); 29 | intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP); 30 | act.startActivity(intent); 31 | } 32 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/compatibility/ListViewMethodHelper.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.compatibility; 2 | 3 | import android.widget.ListView; 4 | 5 | /** 6 | * Avoid {@link VerifyError}s down to 1.6. 7 | * 8 | * @author George Venios 9 | */ 10 | public class ListViewMethodHelper { 11 | private ListViewMethodHelper() { 12 | } 13 | 14 | public static long[] listView_getCheckedItemIds(ListView l) { 15 | return l.getCheckedItemIds(); 16 | } 17 | 18 | public static int listView_getCheckedItemCount(ListView l) { 19 | return l.getCheckedItemCount(); 20 | } 21 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/compatibility/SoftKeyboard.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.compatibility; 2 | 3 | import android.content.Context; 4 | import android.os.IBinder; 5 | import android.view.inputmethod.InputMethodManager; 6 | 7 | /* 8 | * Wraper class for closing the software keyboard, which appeared in API 3. 9 | */ 10 | 11 | public class SoftKeyboard { 12 | /* class initialization fails when this throws an exception */ 13 | static { 14 | try { 15 | Class.forName("android.view.inputmethod.InputMethodManager"); 16 | } catch (Exception ex) { 17 | throw new RuntimeException(ex); 18 | } 19 | } 20 | 21 | private InputMethodManager inputMethodManager; 22 | 23 | public SoftKeyboard(Context ctx) { 24 | inputMethodManager = (InputMethodManager) ctx.getSystemService( 25 | Context.INPUT_METHOD_SERVICE); 26 | } 27 | 28 | /* calling here forces class initialization */ 29 | public static void checkAvailable() { 30 | } 31 | 32 | public boolean hideSoftInputFromWindow(IBinder windowToken, int flags) { 33 | return inputMethodManager.hideSoftInputFromWindow(windowToken, flags); 34 | } 35 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/dialogs/OverwriteFileDialog.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.dialogs; 2 | 3 | import android.app.AlertDialog; 4 | import android.app.Dialog; 5 | import android.content.DialogInterface; 6 | import android.os.Bundle; 7 | import androidx.fragment.app.DialogFragment; 8 | 9 | import org.openintents.filemanager.R; 10 | import org.openintents.filemanager.util.UIUtils; 11 | 12 | public class OverwriteFileDialog extends DialogFragment { 13 | 14 | @Override 15 | public Dialog onCreateDialog(Bundle savedInstanceState) { 16 | return new AlertDialog.Builder(getActivity()) 17 | .setInverseBackgroundForced(UIUtils.shouldDialogInverseBackground(getActivity())) 18 | .setTitle(R.string.file_exists) 19 | .setMessage(R.string.overwrite_question) 20 | .setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() { 21 | @Override 22 | public void onClick(DialogInterface dialog, 23 | int which) { 24 | ((Overwritable) getTargetFragment()).overwrite(); 25 | } 26 | }).setNegativeButton(android.R.string.cancel, null) 27 | .create(); 28 | } 29 | 30 | public interface Overwritable { 31 | public void overwrite(); 32 | } 33 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/files/DirectoryContents.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.files; 2 | 3 | import java.util.List; 4 | 5 | public class DirectoryContents { 6 | public List listDir; 7 | public List listFile; 8 | public List listSdCard; 9 | 10 | // If true, there's a ".nomedia" file in this directory. 11 | public boolean noMedia; 12 | // if true, there was a problem accessing the directory 13 | public boolean noAccess; 14 | } 15 | -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/search/RecentsSuggestionsProvider.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.search; 2 | 3 | import android.content.SearchRecentSuggestionsProvider; 4 | 5 | /** 6 | * Simple recents suggestion provider. Not currently used, as we use a custom one. To use just point the searchable.xml to this provider. It's way faster, but disables access of the QuickSearchBox to OIFM. 7 | * 8 | * @author George Venios 9 | */ 10 | public class RecentsSuggestionsProvider extends SearchRecentSuggestionsProvider { 11 | public final static String AUTHORITY = "org.openintents.filemanager.search.SuggestionProvider"; 12 | public final static int MODE = DATABASE_MODE_QUERIES; 13 | 14 | public RecentsSuggestionsProvider() { 15 | setupSuggestions(AUTHORITY, MODE); 16 | } 17 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/search/SearchService.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.search; 2 | 3 | import android.app.IntentService; 4 | import android.content.Intent; 5 | import androidx.localbroadcastmanager.content.LocalBroadcastManager; 6 | 7 | import org.openintents.intents.FileManagerIntents; 8 | 9 | import java.io.File; 10 | 11 | /** 12 | * Service that asynchronously executes file searches. 13 | * 14 | * @author George Venios. 15 | */ 16 | public class SearchService extends IntentService { 17 | /** 18 | * Used to inform the SearchableActivity of search start and end. 19 | */ 20 | private LocalBroadcastManager lbm; 21 | private SearchCore searcher; 22 | 23 | public SearchService() { 24 | super("SearchService"); 25 | } 26 | 27 | @Override 28 | public void onCreate() { 29 | super.onCreate(); 30 | 31 | lbm = LocalBroadcastManager.getInstance(getApplicationContext()); 32 | 33 | searcher = new SearchCore(this); 34 | searcher.setURI(SearchResultsProvider.CONTENT_URI); 35 | } 36 | 37 | @Override 38 | protected void onHandleIntent(Intent intent) { 39 | // The search query 40 | searcher.setQuery(intent.getStringExtra(FileManagerIntents.EXTRA_SEARCH_QUERY)); 41 | 42 | // Set initial path. To be searched first! 43 | String path = intent 44 | .getStringExtra(FileManagerIntents.EXTRA_SEARCH_INIT_PATH); 45 | File root; 46 | if (path != null) 47 | root = new File(path); 48 | else 49 | root = new File("/"); 50 | 51 | // Search started, let Receivers know. 52 | lbm.sendBroadcast(new Intent(FileManagerIntents.ACTION_SEARCH_STARTED)); 53 | 54 | // Search in current path. 55 | searcher.dropPreviousResults(); 56 | searcher.setRoot(root); 57 | searcher.search(root); 58 | 59 | // Search is over, let Receivers know. 60 | lbm.sendBroadcast(new Intent(FileManagerIntents.ACTION_SEARCH_FINISHED)); 61 | } 62 | } -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/util/UIUtils.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.util; 2 | 3 | import android.app.Activity; 4 | 5 | import org.openintents.filemanager.R; 6 | 7 | import static androidx.preference.PreferenceManager.getDefaultSharedPreferences; 8 | 9 | public abstract class UIUtils { 10 | 11 | public static void setThemeFor(Activity act) { 12 | if (getDefaultSharedPreferences(act).getBoolean("usedarktheme", true)) { 13 | act.setTheme(R.style.Theme_Dark); 14 | } else { 15 | act.setTheme(R.style.Theme_Light_DarkTitle); 16 | } 17 | } 18 | 19 | public static boolean shouldDialogInverseBackground(Activity act) { 20 | return !getDefaultSharedPreferences(act).getBoolean("usedarktheme", true); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /FileManager/src/main/java/org/openintents/filemanager/view/ViewHolder.java: -------------------------------------------------------------------------------- 1 | package org.openintents.filemanager.view; 2 | 3 | import android.widget.ImageView; 4 | import android.widget.TextView; 5 | 6 | public class ViewHolder { 7 | public ImageView icon; 8 | public TextView primaryInfo; 9 | public TextView secondaryInfo; 10 | public TextView tertiaryInfo; 11 | } -------------------------------------------------------------------------------- /FileManager/src/main/res/anim/accelerate_interpolator.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /FileManager/src/main/res/anim/decelerate_interpolator.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /FileManager/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 26 | -------------------------------------------------------------------------------- /FileManager/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 27 | -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_about.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_bookmarks.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_create_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_details.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_rename.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_search.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v11/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v11/ic_action_settings.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v5/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v5/ic_launcher.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_home_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_home_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_sdcard_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi-v5/ic_launcher_sdcard_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/bg_textfield_light_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/bg_textfield_light_activated.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/bg_textfield_light_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/bg_textfield_light_normal.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/bg_top_bar_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/bg_top_bar_dark.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_bookmarks.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_check_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_check_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_compress.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_copy.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_create_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_create_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_create_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_cut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_delete.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_details.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_mark.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_rename.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_send.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_settings.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_action_uncheck_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_action_uncheck_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_file.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_launcher_video.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_navbar_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_navbar_accept.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_navbar_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_navbar_edit.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_navbar_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_navbar_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-hdpi/ic_navbar_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-hdpi/ic_navbar_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_about.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_bookmarks.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_create_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_details.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_rename.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_search.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v11/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v11/ic_action_settings.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v5/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v5/ic_launcher.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_home_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_home_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_sdcard_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi-v5/ic_launcher_sdcard_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_bookmarks.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_check_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_check_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_compress.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_copy.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_create_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_create_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_create_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_cut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_delete.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_details.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_mark.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_rename.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_search.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_send.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_settings.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_action_uncheck_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_action_uncheck_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_file.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_image.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_launcher_video.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_navbar_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_navbar_accept.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_navbar_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_navbar_edit.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_navbar_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_navbar_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-ldpi/ic_navbar_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-ldpi/ic_navbar_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_about.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_bookmarks.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_create_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_details.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_rename.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_search.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v11/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v11/ic_action_settings.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v5/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v5/ic_launcher.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_home_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_home_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_sdcard_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi-v5/ic_launcher_sdcard_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/bg_pathbar_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/bg_pathbar_light.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/bg_textfield_light_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/bg_textfield_light_activated.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/bg_textfield_light_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/bg_textfield_light_normal.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/bg_top_bar_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/bg_top_bar_dark.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_bookmarks.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_check_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_check_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_compress.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_copy.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_create_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_create_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_create_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_cut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_delete.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_details.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_mark.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_rename.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_send.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_settings.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_action_uncheck_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_action_uncheck_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_file.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_launcher_video.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_navbar_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_navbar_accept.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_navbar_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_navbar_edit.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_navbar_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_navbar_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-mdpi/ic_navbar_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-mdpi/ic_navbar_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-v8/bg_pathbar_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_about.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_bookmarks.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_create_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_details.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_rename.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_search.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v11/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v11/ic_action_settings.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_home_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_home_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_sdcard_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi-v5/ic_launcher_sdcard_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/bg_textfield_light_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/bg_textfield_light_activated.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/bg_textfield_light_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/bg_textfield_light_normal.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/bg_top_bar_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/bg_top_bar_dark.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_check_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_check_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_compress.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_copy.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_create_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_create_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_cut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_delete.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_paste.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_send.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_action_uncheck_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_action_uncheck_all.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_file.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_launcher_video.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_navbar_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_navbar_accept.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_navbar_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_navbar_edit.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_navbar_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_navbar_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xhdpi/ic_navbar_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xhdpi/ic_navbar_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/bg_action_container_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/bg_pathbar_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 12 | 13 | 14 | 15 | 17 | 18 | 20 | 21 | 23 | 24 | 26 | 27 | 29 | 30 | 32 | 33 | 35 | -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/bg_pathbar_btn_standard_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/bg_pathbar_btn_standard_focused.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/bg_pathbar_btn_standard_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/bg_pathbar_btn_standard_normal.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/bg_pathbar_btn_standard_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/bg_pathbar_btn_standard_pressed.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/bg_textfield_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/bg_top_bar_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/bg_top_bar_light.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_button_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_button_checked.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_button_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_button_unchecked.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_launcher_folder.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_launcher_folder_open.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_launcher_home.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher_home_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_launcher_home_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher_map.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/ic_launcher_sdcard_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/ic_launcher_sdcard_small.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/list_background_dark_actual.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/list_background_dark_actual.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/list_background_light_actual.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManager/src/main/res/drawable/list_background_light_actual.9.png -------------------------------------------------------------------------------- /FileManager/src/main/res/drawable/select_all.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | -------------------------------------------------------------------------------- /FileManager/src/main/res/layout/activity_filemanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 22 | 23 | 31 | 32 | -------------------------------------------------------------------------------- /FileManager/src/main/res/layout/dialog_text_input.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 20 | 21 | 32 | 33 | -------------------------------------------------------------------------------- /FileManager/src/main/res/layout/dialog_warning.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /FileManager/src/main/res/layout/filelist_browse.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /FileManager/src/main/res/layout/filelist_legacy_multiselect.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /FileManager/src/main/res/layout/item_filelist_multiselect.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FileManager/src/main/res/menu/bookmarks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FileManager/src/main/res/menu/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 16 | 17 | 22 | 26 | 27 | 31 | 32 | 36 | 37 | 41 | 42 | 46 | 47 | 51 | 52 | 56 | 57 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /FileManager/src/main/res/menu/context_pick.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 15 | 16 | 20 | 21 | 25 | 26 | 30 | 31 | 35 | 36 | 40 | 41 | 45 | 46 | 50 | 51 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /FileManager/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 12 | 13 | 21 | 22 | 28 | 29 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /FileManager/src/main/res/menu/multiselect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 12 | 13 | 17 | 18 | 22 | 23 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /FileManager/src/main/res/menu/options_multiselect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /FileManager/src/main/res/menu/simple_file_list.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 10 | 18 | 26 | 27 | 34 | 35 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /FileManager/src/main/res/raw/recent_changes.txt: -------------------------------------------------------------------------------- 1 | ---------------- 2 | release: 2.3.0 3 | 4 | - minor bug fixes 5 | - better support for newer Android versions 6 | 7 | ---------------- 8 | release: 2.2.8 9 | 10 | - improve handling of deleted files 11 | 12 | ---------------- 13 | release: 2.2.7 14 | 15 | - add product flavors for foss distribution and google play distribution 16 | - hide donation menu in google play distribution 17 | 18 | ---------------- 19 | release: 2.2.6 20 | 21 | - fix recent changes 22 | 23 | ---------------- 24 | release: 2.2.5 25 | 26 | - add hungarian translations 27 | - fix send multiple files 28 | 29 | ---------------- 30 | release: 2.2.3 31 | 32 | - add svg mime type 33 | 34 | ---------------- 35 | release: 2.0.6 36 | 37 | - fix file icons 38 | 39 | ---------------- 40 | release: 2.0.5 41 | 42 | - fix file opening 43 | - add indicator for copy/cut and paste 44 | 45 | ---------------- 46 | release: 2.0.3 47 | 48 | - Update for Android 4.4 49 | - Support for x86 50 | - try to open any file 51 | 52 | ---------------- 53 | For the complete list of changes and a list of frequently asked questions, please visit: 54 | http://www.openintents.org 55 | 56 | You can help to improve the translation into your language at Launchpad: 57 | https://translations.launchpad.net/openintents/trunk 58 | 59 | The source code of this free and open source application is available at: 60 | http://code.google.com/p/openintents 61 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-large-land/dimensions.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/topBar_height_big 3 | 4 | 5 | @dimen/list_margin_huge 6 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-large/dimensions.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/topBar_height_big 3 | 4 | 5 | @dimen/list_margin_big 6 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-large/list_background_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | @drawable/list_background_dark_actual 3 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-large/list_background_light.xml: -------------------------------------------------------------------------------- 1 | 2 | @drawable/list_background_light_actual 3 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-sw600dp-land/dimensions.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/topBar_height_big 3 | 4 | 5 | @dimen/list_margin_huge 6 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-sw600dp/dimensions.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/topBar_height_big 3 | 4 | 5 | @dimen/list_margin_big 6 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-sw600dp/list_background_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | @drawable/list_background_dark_actual 3 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-sw600dp/list_background_light.xml: -------------------------------------------------------------------------------- 1 | 2 | @drawable/list_background_light_actual 3 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-sw720dp/dimensions.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/topBar_height_big 3 | 4 | 5 | @dimen/list_margin_huge 6 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-v14/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values-xlarge/dimensions.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/topBar_height_big 3 | 4 | 5 | @dimen/list_margin_huge 6 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | #CCFFFFFF 3 | 4 | 5 | #400099CC 6 | #800099CC 7 | 8 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/dimensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 48dp 3 | 56dp 4 | 5 | 6 | 8dp 7 | 32dp 8 | 56dp 9 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/list_background_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | @null 3 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/list_background_light.xml: -------------------------------------------------------------------------------- 1 | 2 | @null 3 | -------------------------------------------------------------------------------- /FileManager/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 12 | 13 | 20 | -------------------------------------------------------------------------------- /FileManager/src/main/res/xml/about.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /FileManager/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FileManager/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /FileManager/src/play/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /FileManager/template of build-private.properties: -------------------------------------------------------------------------------- 1 | key.store=C:\\certificates\\FileManager.ks 2 | key.alias=FileManager 3 | key.store.password=xxx 4 | key.alias.password=xxx 5 | # Tells adb which device to target for installation. 6 | # Target device: 7 | #adb.device.arg=-d 8 | # Target emulator: 9 | #adb.device.arg=-e -------------------------------------------------------------------------------- /FileManagerDemo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FileManagerDemo/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OI File Manager Demo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /FileManagerDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 11 | 12 | 13 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /FileManagerDemo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # Project target. 10 | target=android-16 11 | -------------------------------------------------------------------------------- /FileManagerDemo/readme.txt: -------------------------------------------------------------------------------- 1 | **************************************************************************** 2 | * Copyright (C) 2008-2011 OpenIntents.org * 3 | * * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); * 5 | * you may not use this file except in compliance with the License. * 6 | * You may obtain a copy of the License at * 7 | * * 8 | * http://www.apache.org/licenses/LICENSE-2.0 * 9 | * * 10 | * Unless required by applicable law or agreed to in writing, software * 11 | * distributed under the License is distributed on an "AS IS" BASIS, * 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 13 | * See the License for the specific language governing permissions and * 14 | * limitations under the License. * 15 | **************************************************************************** 16 | 17 | OI File Manager Demo is a sample application to demonstrate the usage 18 | of "Open", "Save", and "Select folder" intents of OI File Manager. 19 | 20 | To obtain the current release, visit 21 | http://www.openintents.org 22 | 23 | --------------------------------------------------------- 24 | release: 1.0.2 25 | date: 2011-02-13 26 | 27 | - Provide GET_CONTENT demo. 28 | 29 | --------------------------------------------------------- 30 | release: 1.0.1 31 | date: 2011-02-05 32 | 33 | - Properly encode / decode file URIs. 34 | - Support Android 2.3 35 | 36 | --------------------------------------------------------- 37 | release: 1.0.0 38 | date: 2008-12-12 39 | 40 | Features: 41 | - Input field for file or directory name. 42 | - Buttons to initiate "Open", "Save", and "Select folder" 43 | intents. 44 | 45 | 46 | -------------------------------------------------------------------------------- /FileManagerDemo/res/drawable/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManagerDemo/res/drawable/ic_launcher_folder.png -------------------------------------------------------------------------------- /FileManagerDemo/res/drawable/ic_launcher_folder_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManagerDemo/res/drawable/ic_launcher_folder_small.png -------------------------------------------------------------------------------- /FileManagerDemo/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/FileManagerDemo/res/drawable/icon.png -------------------------------------------------------------------------------- /FileManagerDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OI File Manager Demo 4 | No compatible file manager found 5 | File name 6 | Select file to open 7 | Open 8 | Select file to save 9 | Save 10 | Select a folder 11 | Use this folder 12 | Open using GET_CONTENT 13 | Display name: %1$s, File size: %2$s 14 | Open URI 15 | 16 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.version_code = 47 3 | ext.version_name = '2.3.1' 4 | ext.compile_sdk_version = 29 5 | ext.target_sdk_version = 29 6 | ext.min_sdk_version = 14 7 | 8 | repositories { 9 | jcenter() 10 | google() 11 | } 12 | 13 | dependencies { 14 | classpath 'com.android.tools.build:gradle:3.5.2' 15 | } 16 | } 17 | 18 | plugins { 19 | id "com.github.spotbugs" version "2.0.1" 20 | } 21 | 22 | allprojects { 23 | repositories { 24 | google() 25 | jcenter() 26 | maven { 27 | url 'https://jitpack.io' 28 | } 29 | } 30 | 31 | apply plugin: "com.github.spotbugs" 32 | 33 | apply plugin: 'pmd' 34 | pmd { 35 | ignoreFailures = true 36 | } 37 | } -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | android.enableJetifier=true 2 | android.useAndroidX=true -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 18 09:06:15 CET 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-all.zip 7 | -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_bookmarks.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_check_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_check_all.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_compress.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_copy.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_create_folder.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_cut.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_delete.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_details.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_paste.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_rename.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_send.png -------------------------------------------------------------------------------- /icons/Icons of redesign/Gingerbread/ic_action_uncheck_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/Gingerbread/ic_action_uncheck_all.png -------------------------------------------------------------------------------- /icons/Icons of redesign/README.txt: -------------------------------------------------------------------------------- 1 | .png files are sources produced using Adobe Fireworks. Do not edit with incompatible applications as they will lose editability. 2 | 3 | All sources are 512x512. Smaller versions (that are still editable) are produced by resizing the image size from within Fireworks. -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_about.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_bookmarks.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_compress.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_copy.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_create_folder.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_create_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_create_shortcut.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_cut.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_delete.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_details.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_paste.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_rename.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_search.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_send.png -------------------------------------------------------------------------------- /icons/Icons of redesign/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Icons of redesign/ic_action_settings.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/hdpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/hdpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/ldpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/ldpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/mdpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/mdpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/xhdpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_dark/xhdpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/hdpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/hdpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/ldpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/ldpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/mdpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/mdpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/xhdpi/ic_menu_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_add_folder/ic_menu_add_folder_holo_light/xhdpi/ic_menu_add_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/hdpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/hdpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/ldpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/ldpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/mdpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/mdpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/xhdpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_dark/xhdpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/hdpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/hdpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/ldpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/ldpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/mdpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/mdpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/xhdpi/ic_menu_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_folder/ic_menu_folder_holo_light/xhdpi/ic_menu_folder.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/hdpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/hdpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/ldpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/ldpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/mdpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/mdpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/xhdpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_dark/xhdpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/hdpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/hdpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/ldpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/ldpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/mdpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/mdpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/xhdpi/ic_menu_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_multiselect/ic_menu_multiselect_holo_light/xhdpi/ic_menu_multiselect.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-hdpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-hdpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-ldpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-ldpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-mdpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-mdpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-xhdpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_dark/drawable-xhdpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_light/drawable-hdpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_light/drawable-hdpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_light/drawable-ldpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_light/drawable-ldpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_light/drawable-mdpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_light/drawable-mdpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_exclude/holo_light/drawable-xhdpi/ic_menu_scan_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_exclude/holo_light/drawable-xhdpi/ic_menu_scan_exclude.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_dark/drawable-hdpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_dark/drawable-hdpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_dark/drawable-ldpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_dark/drawable-ldpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_dark/drawable-mdpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_dark/drawable-mdpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_dark/drawable-xhdpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_dark/drawable-xhdpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_light/drawable-hdpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_light/drawable-hdpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_light/drawable-ldpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_light/drawable-ldpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_light/drawable-mdpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_light/drawable-mdpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/Unused/ic_menu_scan_include/holo_light/drawable-xhdpi/ic_menu_scan_include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/Unused/ic_menu_scan_include/holo_light/drawable-xhdpi/ic_menu_scan_include.png -------------------------------------------------------------------------------- /icons/ic_launcher_android_package/drawable-hdpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_android_package/drawable-hdpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /icons/ic_launcher_android_package/drawable-ldpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_android_package/drawable-ldpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /icons/ic_launcher_android_package/drawable-mdpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_android_package/drawable-mdpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /icons/ic_launcher_android_package/drawable-xhdpi/ic_launcher_android_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_android_package/drawable-xhdpi/ic_launcher_android_package.png -------------------------------------------------------------------------------- /icons/ic_launcher_archive/hdpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_archive/hdpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /icons/ic_launcher_archive/ldpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_archive/ldpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /icons/ic_launcher_archive/mdpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_archive/mdpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /icons/ic_launcher_archive/xhdpi/ic_launcher_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_archive/xhdpi/ic_launcher_archive.png -------------------------------------------------------------------------------- /icons/ic_launcher_audio/drawable-hdpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_audio/drawable-hdpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /icons/ic_launcher_audio/drawable-ldpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_audio/drawable-ldpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /icons/ic_launcher_audio/drawable-mdpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_audio/drawable-mdpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /icons/ic_launcher_audio/drawable-xhdpi/ic_launcher_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_audio/drawable-xhdpi/ic_launcher_audio.png -------------------------------------------------------------------------------- /icons/ic_launcher_file/drawable-hdpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_file/drawable-hdpi/ic_launcher_file.png -------------------------------------------------------------------------------- /icons/ic_launcher_file/drawable-ldpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_file/drawable-ldpi/ic_launcher_file.png -------------------------------------------------------------------------------- /icons/ic_launcher_file/drawable-mdpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_file/drawable-mdpi/ic_launcher_file.png -------------------------------------------------------------------------------- /icons/ic_launcher_file/drawable-xhdpi/ic_launcher_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_file/drawable-xhdpi/ic_launcher_file.png -------------------------------------------------------------------------------- /icons/ic_launcher_folder/hdpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_folder/hdpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /icons/ic_launcher_folder/ldpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_folder/ldpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /icons/ic_launcher_folder/mdpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_folder/mdpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /icons/ic_launcher_folder/xhdpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_folder/xhdpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /icons/ic_launcher_home/hdpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_home/hdpi/ic_launcher_home.png -------------------------------------------------------------------------------- /icons/ic_launcher_home/ldpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_home/ldpi/ic_launcher_home.png -------------------------------------------------------------------------------- /icons/ic_launcher_home/mdpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_home/mdpi/ic_launcher_home.png -------------------------------------------------------------------------------- /icons/ic_launcher_home/xhdpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_home/xhdpi/ic_launcher_home.png -------------------------------------------------------------------------------- /icons/ic_launcher_image/drawable-hdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image/drawable-hdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_image/drawable-ldpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image/drawable-ldpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_image/drawable-mdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image/drawable-mdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_image/drawable-xhdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image/drawable-xhdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_image_old1/hdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image_old1/hdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_image_old1/ldpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image_old1/ldpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_image_old1/mdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image_old1/mdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_image_old1/xhdpi/ic_launcher_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_image_old1/xhdpi/ic_launcher_image.png -------------------------------------------------------------------------------- /icons/ic_launcher_microsd/hdpi/ic_launcher_microsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_microsd/hdpi/ic_launcher_microsd.png -------------------------------------------------------------------------------- /icons/ic_launcher_microsd/ldpi/ic_launcher_microsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_microsd/ldpi/ic_launcher_microsd.png -------------------------------------------------------------------------------- /icons/ic_launcher_microsd/mdpi/ic_launcher_microsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_microsd/mdpi/ic_launcher_microsd.png -------------------------------------------------------------------------------- /icons/ic_launcher_microsd/xhdpi/ic_launcher_microsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_microsd/xhdpi/ic_launcher_microsd.png -------------------------------------------------------------------------------- /icons/ic_launcher_sdcard/drawable-hdpi/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_sdcard/drawable-hdpi/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /icons/ic_launcher_sdcard/drawable-ldpi/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_sdcard/drawable-ldpi/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /icons/ic_launcher_sdcard/drawable-mdpi/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_sdcard/drawable-mdpi/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /icons/ic_launcher_sdcard/drawable-xhdpi/ic_launcher_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_sdcard/drawable-xhdpi/ic_launcher_sdcard.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_csv/drawable-hdpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_csv/drawable-hdpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_csv/drawable-ldpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_csv/drawable-ldpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_csv/drawable-mdpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_csv/drawable-mdpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_csv/drawable-xhdpi/ic_launcher_text_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_csv/drawable-xhdpi/ic_launcher_text_csv.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_html/hdpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_html/hdpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_html/ldpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_html/ldpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_html/mdpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_html/mdpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_html/xhdpi/ic_launcher_text_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_html/xhdpi/ic_launcher_text_html.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_plain/hdpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_plain/hdpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_plain/ldpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_plain/ldpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_plain/mdpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_plain/mdpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_plain/xhdpi/ic_launcher_text_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_plain/xhdpi/ic_launcher_text_plain.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_xml/drawable-hdpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_xml/drawable-hdpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_xml/drawable-ldpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_xml/drawable-ldpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_xml/drawable-mdpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_xml/drawable-mdpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /icons/ic_launcher_text_xml/drawable-xhdpi/ic_launcher_text_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_text_xml/drawable-xhdpi/ic_launcher_text_xml.png -------------------------------------------------------------------------------- /icons/ic_launcher_video/hdpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_video/hdpi/ic_launcher_video.png -------------------------------------------------------------------------------- /icons/ic_launcher_video/ldpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_video/ldpi/ic_launcher_video.png -------------------------------------------------------------------------------- /icons/ic_launcher_video/mdpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_video/mdpi/ic_launcher_video.png -------------------------------------------------------------------------------- /icons/ic_launcher_video/xhdpi/ic_launcher_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/icons/ic_launcher_video/xhdpi/ic_launcher_video.png -------------------------------------------------------------------------------- /icons/readme.txt: -------------------------------------------------------------------------------- 1 | Icons for OI File Manager 2 | 3 | ic_launcher_android_package: Martin Nikolov (GCI task 2011/12, issue 450) 4 | ic_launcher_archive: bovi (GCI task 2011/12, issue 445) 5 | ic_launcher_audio: Chickenbellyfinn (GCI task 2011/12, issue 443) 6 | ic_launcher_file: Chickenbellyfinn, Darriel (GCI task 2011/12, issue 410) 7 | ic_launcher_folder: Peli 8 | ic_launcher_home: Uthpala Kaushalya (GCI task 2011) 9 | ic_launcher_image: Chickenbellyfinn (GCI task 2011/12, issue 494) 10 | ic_launcher_image_old1: lpd (GCI task 2011/12, issue 442) 11 | ic_launcher_microsd: bovi (GCI task 2011, issue 416) 12 | ic_launcher_sdcard: Chickenbellyfinn (GCI task 2011) 13 | ic_launcher_text_csv: Chickenbellyfinn (GCI task 2011/12, issue 449) 14 | ic_launcher_text_html: Darriel (GCI task 2011/12, issue 446) 15 | ic_launcher_text_plain: Darriel (GCI task 2011/12, issue 448) 16 | ic_launcher_text_xml: Chickenbellyfinn (GCI task 2011/12, issue 447) 17 | ic_launcher_video: Rado Nikolov (GCI task 2011/12, issue 444) 18 | ic_menu_add_folder: bovi (GCI task 2011/12, issue 472) 19 | ic_menu_folder: Darriel (GCI task 2011) 20 | ic_menu_multiselect: Rado Nikolov (GCI task 2011, issue 430) 21 | ic_menu_scan_exclude: Chickenbellyfinn (GCI task 2011/12, issue 466) 22 | ic_menu_scan_include: Chickenbellyfinn (GCI task 2011/12, issue 466) 23 | Icons of redesign/*: George Venios (GSoC 2012, OIFM UI/UX redesign) 24 | 25 | 26 | NOTICE: Action icons used after the redesign can be found in "Icons of redesign" 27 | -------------------------------------------------------------------------------- /promotion/OIFM site screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/OIFM site screenshots/1.png -------------------------------------------------------------------------------- /promotion/OIFM site screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/OIFM site screenshots/2.png -------------------------------------------------------------------------------- /promotion/OIFM site screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/OIFM site screenshots/3.png -------------------------------------------------------------------------------- /promotion/OIFM site screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/OIFM site screenshots/4.png -------------------------------------------------------------------------------- /promotion/OIFM site screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/OIFM site screenshots/5.png -------------------------------------------------------------------------------- /promotion/OIFM site screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/OIFM site screenshots/6.png -------------------------------------------------------------------------------- /promotion/blackberry_appworld/blackberry_launcher_filemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/blackberry_appworld/blackberry_launcher_filemanager.png -------------------------------------------------------------------------------- /promotion/blackberry_appworld/filemanager_promo_1920x1186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/blackberry_appworld/filemanager_promo_1920x1186.png -------------------------------------------------------------------------------- /promotion/blackberry_appworld/screenshots/OIFileManager01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/blackberry_appworld/screenshots/OIFileManager01.png -------------------------------------------------------------------------------- /promotion/description/description.txt: -------------------------------------------------------------------------------- 1 | # OI File Manager 2 | # 3 | # Application name and promo text are extracted from the application strings. 4 | # 5 | # (Put each sentence in a separate line. Each sentence is translated separately) 6 | # 7 | # Description of application 8 | OI File Manager allows you to browse your SD card, create directories, rename, copy, move, and delete files. 9 | It also acts as an extension to other applications to display "Open" and "Save" dialogs. 10 | 11 | This application is ad free and does not require the internet permission. 12 | 13 | For the complete list of changes and a list of frequently asked questions, please visit: 14 | http://www.openintents.org 15 | 16 | You can help to improve the translation into your language at Launchpad: 17 | https://translations.launchpad.net/openintents/trunk 18 | 19 | The source code of this free and open source application is available at: 20 | http://code.google.com/p/openintents 21 | 22 | Features: 23 | * Show list of files with thumbnails for images. 24 | * Move, copy, rename, and delete files. 25 | * Create and delete directories (folders). 26 | * Send files by email. 27 | * Acts as an extension to other applications, like GMail, to attach files. 28 | * Support for many file endings and mime types. 29 | * Supports PICK_FILE and PICK_DIRECTORY intents so that other applications can use OI File Manager. 30 | 31 | Available extensions for "OI File Manager": 32 | * Show the license information with "OI About". 33 | 34 | Applications that work with "OI File Manager": 35 | * Open and save text files in "OI Notepad". 36 | 37 | Keywords: 38 | # Keywords: List several related key words and variations in your language and in English that people might search for. 39 | * file manager, filemanager, file explorer 40 | # Keep these keywords untranslated, or list the English version and a translation of the company name into your language in variations that people might search for. 41 | * OI, IO, OpenIntents, Open Intents 42 | 43 | International versions: 44 | #$ international 45 | 46 | Search strings for Market: 47 | # (these are not translated into other languages) 48 | #$ include description_extensions.txt 49 | -------------------------------------------------------------------------------- /promotion/description/description_extensions.txt: -------------------------------------------------------------------------------- 1 | * uses OI About 2 | * extension for OI Notepad -------------------------------------------------------------------------------- /promotion/description/translations/application_names.txt: -------------------------------------------------------------------------------- 1 | Gestionnaire de fichiers OI File Manager 2 | Gestor de fitxers d'OI. 3 | OI 파일 관리자 4 | OI Bestandsbeheer 5 | OI Dateimanager 6 | OI Dosya Yöneticisi 7 | OI Failu pārvaldnieks 8 | OI Fájlkezelő 9 | OI Fajl Meneger 10 | OI Fayl Menecer 11 | OI Filbehandler 12 | OI File Manager 13 | OI File Manedyer 14 | OI Gestore File 15 | OI Menedżer plików 16 | OI Správca Súborov 17 | OI Správce souborů 18 | OI Tiedostonhallinta 19 | OI Διαχείριση αρχείων 20 | OI Файл-мэнэджар 21 | OI Файлов Мениджър 22 | OI مدير پرونده‌ 23 | OI ھۆججەت باشقۇرغۇچ 24 | OI फ़ाइल प्रबंधक 25 | OI ਫਾਇਲ ਮੈਨਿਜਰ 26 | OI ແຟ້ມ ບໍລີຫານ 27 | OI ファイルマネージャー 28 | OI文件管理器 29 | OI 檔案總管 30 | Менеджер файлів OI 31 | מנהל קבצים OI 32 | مدير الملفات OI 33 | -------------------------------------------------------------------------------- /promotion/description/translations/description-ar.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | مدير الملفات OI 3 | 4 | # Promo text: 5 | ادارة الملفات على بطاقة SD باستعمال مدير المفات .OI 6 | 7 | # Description: 8 | OI إدارة الملفات يسمح لك باستعراض بطاقة SD الخاصة بك وإنشاء الدلائل، إعادة تسمية، ونسخ، ونقل وحذف الملفات. وهي أيضا بمثابة ملحق إلى تطبيقات أخرى عرض "فتح" ومربعات الحوار "حفظ". 9 | 10 | هذا التطبيق هو خالية من الإعلانات ولا يحتاج إذن الإنترنت. 11 | 12 | لقائمة كاملة من التغييرات وقائمة بالأسئلة المطروحة بشكل متكرر، يرجى زيارة: 13 | http://www.openintents.org 14 | 15 | يمكنك المساعدة على تحسين ترجمة إلى اللغة الخاصة بك في Launchpad: 16 | https://translations.launchpad.net/openintents/trunk 17 | 18 | شفرة المصدر لهذا التطبيق الحرة والمفتوحة المصدر متاحة في: 19 | http://code.google.com/p/openintents 20 | 21 | الميزات: 22 | * إظهار قائمة بملفات مع مصغرات للصور. 23 | * نقل ونسخ وإعادة تسمية وحذف الملفات. 24 | * إنشاء وحذف الدلائل (المجلدات). 25 | * إرسال الملفات عن طريق البريد الإلكتروني. 26 | * يعمل كملحق للتطبيقات الأخرى، مثل GMail، بإرفاق الملفات. 27 | * دعم للعديد من نهايات الملف وأنواع mime. 28 | * يدعم اختيار_الملف واختيار_وجهات الدليل كي تستخدم تطبيقات أخرى OI إدارة الملفات. 29 | 30 | الملحقات المتوفرة ل "OIإدارة الملفات": 31 | * إظهار معلومات الترخيص مع " OI حول". 32 | 33 | التطبيقات التي تعمل مع "OI إدارة الملفات": 34 | * فتح وحفظ الملفات النص في "OI المفكرة". 35 | 36 | الكلمات الأساسية: 37 | * إدارة الملفات، إدارة الملفات، مستكشف ملف 38 | * المقاصد مفتوحة OI, IO, OpenIntents 39 | 40 | الإصدارات الدولية: 41 | Gestionnaire de fichiers OI File Manager, Gestor de fitxers d'OI., OI 파일 관리자, OI Bestandsbeheer, OI Dateimanager, OI Dosya Yöneticisi, OI Failu pārvaldnieks, OI Fájlkezelő, OI Fajl Meneger, OI Fayl Menecer, OI Filbehandler, OI File Manager, OI File Manedyer, OI Gestore File, OI Menedżer plików, OI Správca Súborov, OI Správce souborů, OI Tiedostonhallinta, OI Διαχείριση αρχείων, OI Файл-мэнэджар, OI Файлов Мениджър, OI مدير پرونده‌, OI ھۆججەت باشقۇرغۇچ, OI फ़ाइल प्रबंधक, OI ਫਾਇਲ ਮੈਨਿਜਰ, OI ແຟ້ມ ບໍລີຫານ, OI ファイルマネージャー, OI文件管理器, OI 檔案總管, Менеджер файлів OI, מנהל קבצים OI, مدير الملفات OI 42 | 43 | 44 | سلاسل البحث للسوق: 45 | * uses OI About 46 | * extension for OI Notepad 47 | 48 | -------------------------------------------------------------------------------- /promotion/description/translations/description-az.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI Fayl Menecer 3 | 4 | # Promo text: 5 | OI Fayl Meneceri ilə yaddaş kartınızdakı fayllarınızı idarə edin. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-bs.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI Fajl Meneger 3 | 4 | # Promo text: 5 | Upravljanje Fajlovima na SD kartici sa OI File Manager. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-fo.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI File Manager 3 | 4 | # Promo text: 5 | Manage files on the SD card with OI File Manager. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-hu.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI Fájlkezelő 3 | 4 | # Promo text: 5 | Fájlok kezelése az SD kártyán az OI Fájlkezelővel. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-iw.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | מנהל קבצים OI 3 | 4 | # Promo text: 5 | ניהול קבצים אשר נמצאים בכרטיס ה-SD בעזרת מנהל הקבצים OI. 6 | 7 | # Description: 8 | מנהל קבצים OI נותן לך לדפדף בכרטיס הדיגיטלי המאובטח שלך, 9 | ליצור ספריות, לשנות שם, להעתיק, להעביר ולמחוק קבצים הוא גם פועל כהרחבה לאפליקציות אחרות ומציג דיאלוגי "פתח" ו"שמור". 10 | 11 | באפליקציה זאת אין פרסומות והיא לא דורשת אישור אינטרנט. 12 | 13 | לרשימה המלאה של שינויים ולרשימה של שאלות נפוצות אנא לכו אל: 14 | http://www.openintents.org 15 | 16 | אתם יכולים לעזור לשפר את התרגום בשפתכם ב-Launchpad: 17 | https://translations.launchpad.net/openintents/trunk 18 | 19 | קוד המקור של אפליקציה חינמית ובעלת קוד פתוח זמין אצל: 20 | http://code.google.com/p/openintents 21 | 22 | מאפיינים: 23 | * הראה רשימה של קבצים עם תמונה ממוזערת בשביל תמונות 24 | * העבר, העתק, שנה שם ומחק קבצים. 25 | * צור ומחק ספריות (תיקיות). 26 | * שלח קבצים באי מייל. 27 | * פועל כהרחבה לאפליקציות אחרות, כמו GMail, כדי לצרף קבצים. 28 | * תומך בסיומות רבות של קבצים ובסוגי חיקוי (Mime). 29 | * תומך בכוונות PICK_FILE ו- PICK_DIRECTORY כך שאפליקציות אחרות יוכלו להשתמש במנהל קבצים OI. 30 | 31 | הרחבות זמינות בשביל "מנהל קבצים OI": 32 | * הראה מידע על הרישיון עם "אודות OI". 33 | 34 | יישומים שעובדים עם "מנהל קבצים OI": 35 | * פתח ושמור קבצי טקסט בתוך "פנקס פתקים OI". 36 | 37 | ‏מילות מפתח: 38 | * מנהל קבצים, סייר קבצים 39 | * OI, IO, OpenIntents, Open Intents 40 | 41 | גרסאות בין-לאומיות: 42 | Gestionnaire de fichiers OI File Manager, Gestor de fitxers d'OI., OI 파일 관리자, OI Bestandsbeheer, OI Dateimanager, OI Dosya Yöneticisi, OI Failu pārvaldnieks, OI Fájlkezelő, OI Fajl Meneger, OI Fayl Menecer, OI Filbehandler, OI File Manager, OI File Manedyer, OI Gestore File, OI Menedżer plików, OI Správca Súborov, OI Správce souborů, OI Tiedostonhallinta, OI Διαχείριση αρχείων, OI Файл-мэнэджар, OI Файлов Мениджър, OI مدير پرونده‌, OI ھۆججەت باشقۇرغۇچ, OI फ़ाइल प्रबंधक, OI ਫਾਇਲ ਮੈਨਿਜਰ, OI ແຟ້ມ ບໍລີຫານ, OI ファイルマネージャー, OI文件管理器, OI 檔案總管, Менеджер файлів OI, מנהל קבצים OI, مدير الملفات OI 43 | 44 | 45 | חפש מחרוזות לשוק: 46 | * uses OI About 47 | * extension for OI Notepad 48 | 49 | -------------------------------------------------------------------------------- /promotion/description/translations/description-ja.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI ファイルマネージャー 3 | 4 | # Promo text: 5 | OI ファイルマネージャーで SDカードのファイルを管理します。 6 | 7 | # Description: 8 | OI ファイルマネージャーでSD カードを閲覧したり、ディレクトリの作成・変更・コピー・移動・削除ができます。 また"開く" と "保存" ダイアログをほかのアプリケーションに表示する拡張機能のようにも動作します。 9 | 10 | このアプリケーションは広告を含まず、インターネット許可を必要としません。 11 | 12 | すべての変更リストや質問リストを見るには: 13 | http://www.openintents.org 14 | 15 | あなたもこの言語の翻訳を Launchpad で改善することができます: 16 | https://translations.launchpad.net/openintents/trunk 17 | 18 | この無料でオープンソースのアプリケーションのソースコードは以下の場所から取得できます: 19 | http://code.google.com/p/openintents 20 | 21 | 機能: 22 | * ファイルの画像用のサムネイルのリストを表示する。 23 | * ファイルの移動・コピー・削除。 24 | * ディレクトリ (フォルダー) の作成・削除 25 | * ファイルをメールで送る 26 | * GMail などの他のアプリケーションにファイルを添付する拡張機能のようにも動作します。 27 | * 様々なファイルエンディングとMIMEタイプ のサポート。 28 | * 他のアプリケーションが OI ファイルマネージャーを使用できるように PICK_FILE と PICK_DIRECTORY インテントをサポートしています。 29 | 30 | "OI ファイルマネージャー" の利用可能な拡張子: 31 | * "OI 情報" のライセンス情報を表示する。 32 | 33 | "OI ファイルマネージャー" と動作するアプリケーション: 34 | * "OI メモ帳" でテキストファイルを開く・保存する。 35 | 36 | キーワード: 37 | * ファイルマネージャ、ファイル・マネージャー、ファイル マネージャー 38 | * OI, IO, OpenIntents, Open Intents 39 | 40 | 国際バージョン: 41 | Gestionnaire de fichiers OI File Manager, Gestor de fitxers d'OI., OI 파일 관리자, OI Bestandsbeheer, OI Dateimanager, OI Dosya Yöneticisi, OI Failu pārvaldnieks, OI Fájlkezelő, OI Fajl Meneger, OI Fayl Menecer, OI Filbehandler, OI File Manager, OI File Manedyer, OI Gestore File, OI Menedżer plików, OI Správca Súborov, OI Správce souborů, OI Tiedostonhallinta, OI Διαχείριση αρχείων, OI Файл-мэнэджар, OI Файлов Мениджър, OI مدير پرونده‌, OI ھۆججەت باشقۇرغۇچ, OI फ़ाइल प्रबंधक, OI ਫਾਇਲ ਮੈਨਿਜਰ, OI ແຟ້ມ ບໍລີຫານ, OI ファイルマネージャー, OI文件管理器, OI 檔案總管, Менеджер файлів OI, מנהל קבצים OI, مدير الملفات OI 42 | 43 | 44 | マーケット用に文字列を検索: 45 | * uses OI About 46 | * extension for OI Notepad 47 | 48 | -------------------------------------------------------------------------------- /promotion/description/translations/description-ko.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI 파일 관리자 3 | 4 | # Promo text: 5 | SD 카드의 OI 파일 매니저로 파일 관리 6 | 7 | # Description: 8 | OI 파일 관리자에서는 SD 카드 탐색, 폴더 만들기, 파일의 이름을 바꾸거나, 복사하기, 옮기기, 삭제를 할 수 있습니다. 또 다른 앱의 확장으로서 "열기"와 "저장" 대화 상자를 표시하는 데 쓰입니다. 9 | 10 | 이 앱은 광고가 없으며 인터넷에 접속하지 않습니다. 11 | 12 | 모든 변경 내역과 FAQ는 다음 주소에서 볼 수 있습니다: 13 | http://www.openintents.org 14 | 15 | 당신의 언어로의 번역을 Launchpad에서 도울 수 있습니다: 16 | https://translations.launchpad.net/openintents/trunk 17 | 18 | 이 무료 오픈 소스 앱의 소스 코드는 다음 주소에서 받을 수 있습니다: 19 | http://code.google.com/p/openintents 20 | 21 | 기능: 22 | * 이미지 썸네일과 함께 파일 목록을 보입니다. 23 | * 파일 옮기기, 이름 바꾸기, 삭제하기. 24 | * 폴더 만들기, 삭제하기. 25 | * 이메일로 파일 보내기. 26 | * 지메일과 같은 다은 앱의 확장 역할을 하여 파일을 첨부합니다. 27 | * 다양한 MIME 타입과 확장자를 지원합니다. 28 | * 다른 앱이 OI 파일 관리자를 사용할 수 있도록 PICK_FILE과 PICK_DIRECTORY intent를 지원합니다. 29 | 30 | 사용 가능한 "OI 파일 관리자" 확장들: 31 | * "OI에 대해서" 로 라이선스 정보를 봅니다. 32 | 33 | "OI 파일 관리자" 와 호환되는 앱들: 34 | * "OI 메모장" 으로 텍스트 파일을 열고 저장합니다. 35 | 36 | 키워드: 37 | * 파일 매니저, 탐색기 38 | * OI, IO, OpenIntents, Open Intents 39 | 40 | 국제 버전들: 41 | Gestionnaire de fichiers OI File Manager, Gestor de fitxers d'OI., OI 파일 관리자, OI Bestandsbeheer, OI Dateimanager, OI Dosya Yöneticisi, OI Failu pārvaldnieks, OI Fájlkezelő, OI Fajl Meneger, OI Fayl Menecer, OI Filbehandler, OI File Manager, OI File Manedyer, OI Gestore File, OI Menedżer plików, OI Správca Súborov, OI Správce souborů, OI Tiedostonhallinta, OI Διαχείριση αρχείων, OI Файл-мэнэджар, OI Файлов Мениджър, OI مدير پرونده‌, OI ھۆججەت باشقۇرغۇچ, OI फ़ाइल प्रबंधक, OI ਫਾਇਲ ਮੈਨਿਜਰ, OI ແຟ້ມ ບໍລີຫານ, OI ファイルマネージャー, OI文件管理器, OI 檔案總管, Менеджер файлів OI, מנהל קבצים OI, مدير الملفات OI 42 | 43 | 44 | 마켓에서 검색하기: 45 | * uses OI About 46 | * extension for OI Notepad 47 | 48 | -------------------------------------------------------------------------------- /promotion/description/translations/description-lo.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI ແຟ້ມ ບໍລີຫານ 3 | 4 | # Promo text: 5 | Manage files on the SD card with OI File Manager. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-pt-rBR.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI File Manager 3 | 4 | # Promo text: 5 | Gerencie seus arquivos do catão SD com o OI File Manager. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-sc.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI File Manager 3 | 4 | # Promo text: 5 | Manage files on the SD card with OI File Manager. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-sl.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI File Manager 3 | 4 | # Promo text: 5 | Upravljaj datoteke na SD kartici s OI File Manager. 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-v11.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | 3 | 4 | # Promo text: 5 | 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-v14.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | 3 | 4 | # Promo text: 5 | 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/description/translations/description-zh-rCN.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI文件管理器 3 | 4 | # Promo text: 5 | OI文件管理器用来管理SD卡上的文件。 6 | 7 | # Description: 8 | 文件管理器允许你浏览SD卡,创建目录,重命名,复制,移动和删除文件。 作为一个扩展到其他应用程序,显示“打开”和“保存”对话框。 9 | 10 | 本程序不含广告,也不需要网络权限 11 | 12 | 你可以在这里获得完整的改变列表和常见问题回答 13 | http://www.openintents.org 14 | 15 | 可以翻译成您的语言: 16 | https://translations.launchpad.net/openintents/trunk 17 | 18 | 本程序是开源免费的,它的源代码能在这里获得 19 | http://code.google.com/p/openintents 20 | 21 | 功能 22 | * 显示的图像的缩略图文件列表。 23 | * 移动,复制,重命名,和删除文件 24 | * 创建和删除目录(文件夹) 25 | * 通过电子邮件发送文件 26 | * 也可给其它第三方应用提供扩展功能,比如给GMail添加附件。 27 | * 支持多种文件扩展名和MIME类型 28 | * 支持PICK_FILE和PICK_DIRECTORY意图, 其它应用程序可以利用OI文件管理器。 29 | 30 | Available extensions for "OI File Manager": 31 | * Show the license information with "OI About". 32 | 33 | Applications that work with "OI File Manager": 34 | * Open and save text files in "OI Notepad". 35 | 36 | 关键字: 37 | * 文件管理器,文件管理器,文件浏览器 38 | * OI, IO, OpenIntents, Open Intents 39 | 40 | 国际版本: 41 | Gestionnaire de fichiers OI File Manager, Gestor de fitxers d'OI., OI 파일 관리자, OI Bestandsbeheer, OI Dateimanager, OI Dosya Yöneticisi, OI Failu pārvaldnieks, OI Fájlkezelő, OI Fajl Meneger, OI Fayl Menecer, OI Filbehandler, OI File Manager, OI File Manedyer, OI Gestore File, OI Menedżer plików, OI Správca Súborov, OI Správce souborů, OI Tiedostonhallinta, OI Διαχείριση αρχείων, OI Файл-мэнэджар, OI Файлов Мениджър, OI مدير پرونده‌, OI ھۆججەت باشقۇرغۇچ, OI फ़ाइल प्रबंधक, OI ਫਾਇਲ ਮੈਨਿਜਰ, OI ແຟ້ມ ບໍລີຫານ, OI ファイルマネージャー, OI文件管理器, OI 檔案總管, Менеджер файлів OI, מנהל קבצים OI, مدير الملفات OI 42 | 43 | 44 | 在市场中搜索: 45 | * uses OI About 46 | * extension for OI Notepad 47 | 48 | -------------------------------------------------------------------------------- /promotion/description/translations/description-zh-rTW.txt: -------------------------------------------------------------------------------- 1 | # Application: 2 | OI 檔案總管 3 | 4 | # Promo text: 5 | 使用 OI 檔案總管管理 SD 卡的檔案 6 | 7 | # Description: 8 | -------------------------------------------------------------------------------- /promotion/icons/README.txt: -------------------------------------------------------------------------------- 1 | .png files are sources produced using Adobe Fireworks. Do not edit with incompatible applications as they will lose editability. -------------------------------------------------------------------------------- /promotion/icons/Small_refined/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/icons/Small_refined/ic_launcher.png -------------------------------------------------------------------------------- /promotion/icons/Small_refined/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/icons/Small_refined/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /promotion/icons/ic_launcher_ICS_fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/icons/ic_launcher_ICS_fireworks.png -------------------------------------------------------------------------------- /promotion/icons/ic_launcher_filemanager_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/icons/ic_launcher_filemanager_512.png -------------------------------------------------------------------------------- /promotion/market/README.txt: -------------------------------------------------------------------------------- 1 | promo_small was produced using Adobe Fireworks. 2 | promo_big can't be edited as it's a photograph. -------------------------------------------------------------------------------- /promotion/market/old/filemanager_promo_1024x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/market/old/filemanager_promo_1024x500.png -------------------------------------------------------------------------------- /promotion/market/old/filemanager_promo_180x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/market/old/filemanager_promo_180x120.png -------------------------------------------------------------------------------- /promotion/market/promo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/market/promo_big.png -------------------------------------------------------------------------------- /promotion/market/promo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/market/promo_small.png -------------------------------------------------------------------------------- /promotion/screenshots/2_3_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/screenshots/2_3_browse.png -------------------------------------------------------------------------------- /promotion/screenshots/2_3_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/screenshots/2_3_multiple.png -------------------------------------------------------------------------------- /promotion/screenshots/4.1_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/screenshots/4.1_bookmarks.png -------------------------------------------------------------------------------- /promotion/screenshots/4.1_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/screenshots/4.1_browse.png -------------------------------------------------------------------------------- /promotion/screenshots/4.1_multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/screenshots/4.1_multiselect.png -------------------------------------------------------------------------------- /promotion/screenshots/4.1_search_suggestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openintents/filemanager/194d7b0df00154e116b5b0d2247b6755f74c46d5/promotion/screenshots/4.1_search_suggestion.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include 'FileManager', 'FileManagerDemo' --------------------------------------------------------------------------------