├── .classpath ├── .project ├── AndroidManifest.xml ├── README ├── default.properties ├── gen └── org │ └── moparisthebest │ └── appbak │ └── R.java ├── gpl.txt ├── res ├── drawable │ ├── ic_launcher_folder.png │ ├── ic_launcher_home_small.png │ ├── ic_menu_back_small.png │ ├── ic_menu_forward_small.png │ ├── ic_menu_help.png │ ├── ic_menu_info_details.png │ ├── icon.png │ ├── icon_file.png │ ├── icon_sdcard.png │ └── icon_sdcard_small.png ├── layout │ ├── dialog_new_folder.xml │ ├── filelist.xml │ ├── filelist_item.xml │ ├── list.xml │ └── main.xml ├── raw │ └── license_short.txt ├── values │ ├── strings.xml │ ├── strings_not_for_translation.xml │ └── stringsoi.xml └── xml │ └── mimetypes.xml └── src └── org └── moparisthebest ├── appbak ├── AppBak.java └── RestoreList.java └── openintents ├── filemanager ├── DirectoryContents.java ├── DirectoryScanner.java ├── FileManagerActivity.java ├── FileManagerProvider.java ├── IconifiedText.java ├── IconifiedTextListAdapter.java ├── IconifiedTextView.java ├── ThumbnailLoader.java ├── compatibility │ ├── BitmapDrawable_Compatible.java │ └── BitmapDrawable_SDK_1_6.java └── util │ ├── FileUtils.java │ ├── MimeTypeParser.java │ └── MimeTypes.java ├── intents └── FileManagerIntents.java └── util └── MenuIntentOptionsWithIcons.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/README -------------------------------------------------------------------------------- /default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/default.properties -------------------------------------------------------------------------------- /gen/org/moparisthebest/appbak/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/gen/org/moparisthebest/appbak/R.java -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/gpl.txt -------------------------------------------------------------------------------- /res/drawable/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/ic_launcher_folder.png -------------------------------------------------------------------------------- /res/drawable/ic_launcher_home_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/ic_launcher_home_small.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_back_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/ic_menu_back_small.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_forward_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/ic_menu_forward_small.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/ic_menu_help.png -------------------------------------------------------------------------------- /res/drawable/ic_menu_info_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/ic_menu_info_details.png -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/icon.png -------------------------------------------------------------------------------- /res/drawable/icon_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/icon_file.png -------------------------------------------------------------------------------- /res/drawable/icon_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/icon_sdcard.png -------------------------------------------------------------------------------- /res/drawable/icon_sdcard_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/drawable/icon_sdcard_small.png -------------------------------------------------------------------------------- /res/layout/dialog_new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/layout/dialog_new_folder.xml -------------------------------------------------------------------------------- /res/layout/filelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/layout/filelist.xml -------------------------------------------------------------------------------- /res/layout/filelist_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/layout/filelist_item.xml -------------------------------------------------------------------------------- /res/layout/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/layout/list.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/raw/license_short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/raw/license_short.txt -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/strings_not_for_translation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/values/strings_not_for_translation.xml -------------------------------------------------------------------------------- /res/values/stringsoi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/values/stringsoi.xml -------------------------------------------------------------------------------- /res/xml/mimetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/res/xml/mimetypes.xml -------------------------------------------------------------------------------- /src/org/moparisthebest/appbak/AppBak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/appbak/AppBak.java -------------------------------------------------------------------------------- /src/org/moparisthebest/appbak/RestoreList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/appbak/RestoreList.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/DirectoryContents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/DirectoryContents.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/DirectoryScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/DirectoryScanner.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/FileManagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/FileManagerActivity.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/FileManagerProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/FileManagerProvider.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/IconifiedText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/IconifiedText.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/IconifiedTextListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/IconifiedTextListAdapter.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/IconifiedTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/IconifiedTextView.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/ThumbnailLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/ThumbnailLoader.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/compatibility/BitmapDrawable_Compatible.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/compatibility/BitmapDrawable_Compatible.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/compatibility/BitmapDrawable_SDK_1_6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/compatibility/BitmapDrawable_SDK_1_6.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/util/FileUtils.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/util/MimeTypeParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/util/MimeTypeParser.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/filemanager/util/MimeTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/filemanager/util/MimeTypes.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/intents/FileManagerIntents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/intents/FileManagerIntents.java -------------------------------------------------------------------------------- /src/org/moparisthebest/openintents/util/MenuIntentOptionsWithIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moparisthebest/AppBak/HEAD/src/org/moparisthebest/openintents/util/MenuIntentOptionsWithIcons.java --------------------------------------------------------------------------------