├── .gitignore ├── .gitmodules ├── CREDITS.md ├── LICENSE.txt ├── README.md ├── application ├── build.gradle ├── pom.xml ├── project.properties └── src │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ ├── Roboto-BoldCondensed.ttf │ │ │ └── Roboto-Light.ttf │ ├── java │ │ └── com │ │ │ └── projectsexception │ │ │ └── myapplist │ │ │ ├── BaseActivity.java │ │ │ ├── FolderPickerActivity.java │ │ │ ├── ListIgnoredActivity.java │ │ │ ├── ListInstallActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MyAppListPreferenceActivity.java │ │ │ ├── ShareActivity.java │ │ │ ├── fragments │ │ │ ├── AbstractAppListFragment.java │ │ │ ├── AppInfoFragment.java │ │ │ ├── AppListFragment.java │ │ │ ├── FileDialogFragment.java │ │ │ ├── FileListFragment.java │ │ │ ├── FolderPickerFragment.java │ │ │ ├── IgnoredListFragment.java │ │ │ └── ShareTaskFragment.java │ │ │ ├── iconloader │ │ │ ├── IconDownloadRunnable.java │ │ │ ├── IconManager.java │ │ │ ├── IconTask.java │ │ │ └── IconView.java │ │ │ ├── model │ │ │ ├── AppInfo.java │ │ │ └── MyAppListDbHelper.java │ │ │ ├── util │ │ │ ├── AppUtil.java │ │ │ ├── ApplicationsReceiver.java │ │ │ └── BackupReceiver.java │ │ │ ├── view │ │ │ ├── AnimationUtil.java │ │ │ ├── AppListAdapter.java │ │ │ ├── AppListIgnoredAdapter.java │ │ │ ├── CheckedLayout.java │ │ │ ├── ThemeManager.java │ │ │ └── TypefaceProvider.java │ │ │ ├── work │ │ │ ├── AbstractListLoader.java │ │ │ ├── AppListLoader.java │ │ │ ├── AppSaveTask.java │ │ │ ├── FileListLoader.java │ │ │ ├── SaveListService.java │ │ │ └── ShareAppSaveTask.java │ │ │ └── xml │ │ │ ├── AppXMLHandler.java │ │ │ ├── FileUtil.java │ │ │ ├── ParserException.java │ │ │ └── ParserUtil.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ab_bottom_solid_flavored.9.png │ │ ├── ab_solid_flavored.9.png │ │ ├── ab_stacked_solid_flavored.9.png │ │ ├── ab_transparent_flavored.9.png │ │ ├── btn_cab_done_default_flavored.9.png │ │ ├── btn_cab_done_focused_flavored.9.png │ │ ├── btn_cab_done_pressed_flavored.9.png │ │ ├── cab_background_bottom_flavored.9.png │ │ ├── cab_background_top_flavored.9.png │ │ ├── crouton_close.png │ │ ├── custom_share_dark.png │ │ ├── custom_share_light.png │ │ ├── ic_default_launcher.png │ │ ├── ic_find_previous_holo_dark.png │ │ ├── ic_find_previous_holo_light.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_copy_dark.png │ │ ├── ic_menu_copy_light.png │ │ ├── ic_menu_delete_dark.png │ │ ├── ic_menu_delete_light.png │ │ ├── ic_menu_info_details_dark.png │ │ ├── ic_menu_info_details_light.png │ │ ├── ic_menu_install_dark.png │ │ ├── ic_menu_install_light.png │ │ ├── ic_menu_play_clip_dark.png │ │ ├── ic_menu_play_clip_light.png │ │ ├── ic_menu_refresh_dark.png │ │ ├── ic_menu_refresh_light.png │ │ ├── ic_menu_save_dark.png │ │ ├── ic_menu_save_light.png │ │ ├── ic_menu_search_dark.png │ │ ├── ic_menu_search_light.png │ │ ├── ic_menu_select_all_dark.png │ │ ├── ic_menu_select_all_light.png │ │ ├── ic_menu_settings_dark.png │ │ ├── ic_menu_settings_light.png │ │ ├── ic_menu_share_dark.png │ │ ├── ic_menu_share_light.png │ │ ├── ic_menu_stop_dark.png │ │ ├── ic_menu_stop_light.png │ │ ├── ic_menu_upload_dark.png │ │ ├── ic_menu_upload_light.png │ │ ├── list_focused_flavored.9.png │ │ ├── menu_dropdown_panel_flavored.9.png │ │ ├── myapplisttheme_btn_check_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_default_disabled_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_disabled_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_normal_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_pressed_holo_dark.9.png │ │ ├── myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_pressed_holo_dark.png │ │ ├── myapplisttheme_fastscroll_thumb_default_holo.png │ │ ├── myapplisttheme_fastscroll_thumb_pressed_holo.png │ │ ├── myapplisttheme_list_activated_holo.9.png │ │ ├── myapplisttheme_list_focused_holo.9.png │ │ ├── myapplisttheme_list_longpressed_holo.9.png │ │ ├── myapplisttheme_list_pressed_holo_dark.9.png │ │ ├── myapplisttheme_list_selector_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_default_holo_dark.9.png │ │ ├── myapplisttheme_spinner_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_focused_holo_dark.9.png │ │ ├── myapplisttheme_spinner_pressed_holo_dark.9.png │ │ ├── myapplistthemelight_btn_check_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_default_disabled_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_disabled_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_normal_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_pressed_holo_light.9.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_pressed_holo_light.png │ │ ├── myapplistthemelight_fastscroll_thumb_default_holo.png │ │ ├── myapplistthemelight_fastscroll_thumb_pressed_holo.png │ │ ├── myapplistthemelight_list_activated_holo.9.png │ │ ├── myapplistthemelight_list_focused_holo.9.png │ │ ├── myapplistthemelight_list_longpressed_holo.9.png │ │ ├── myapplistthemelight_list_pressed_holo_light.9.png │ │ ├── myapplistthemelight_list_selector_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_default_holo_light.9.png │ │ ├── myapplistthemelight_spinner_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_focused_holo_light.9.png │ │ ├── myapplistthemelight_spinner_pressed_holo_light.9.png │ │ ├── play_icon.png │ │ ├── progress_bg_flavored.9.png │ │ ├── progress_primary_flavored.9.png │ │ ├── progress_secondary_flavored.9.png │ │ ├── spinner_ab_default_flavored.9.png │ │ ├── spinner_ab_disabled_flavored.9.png │ │ ├── spinner_ab_focused_flavored.9.png │ │ ├── spinner_ab_pressed_flavored.9.png │ │ ├── tab_selected_flavored.9.png │ │ ├── tab_selected_focused_flavored.9.png │ │ ├── tab_selected_pressed_flavored.9.png │ │ ├── tab_unselected_focused_flavored.9.png │ │ ├── tab_unselected_pressed_flavored.9.png │ │ ├── underline_text_dark.9.png │ │ └── underline_text_light.9.png │ │ ├── drawable-ldpi │ │ ├── custom_share_dark.png │ │ ├── custom_share_light.png │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ ├── ab_bottom_solid_flavored.9.png │ │ ├── ab_solid_flavored.9.png │ │ ├── ab_stacked_solid_flavored.9.png │ │ ├── ab_transparent_flavored.9.png │ │ ├── btn_cab_done_default_flavored.9.png │ │ ├── btn_cab_done_focused_flavored.9.png │ │ ├── btn_cab_done_pressed_flavored.9.png │ │ ├── cab_background_bottom_flavored.9.png │ │ ├── cab_background_top_flavored.9.png │ │ ├── crouton_close.png │ │ ├── custom_share_dark.png │ │ ├── custom_share_light.png │ │ ├── ic_default_launcher.png │ │ ├── ic_find_previous_holo_dark.png │ │ ├── ic_find_previous_holo_light.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_copy_dark.png │ │ ├── ic_menu_copy_light.png │ │ ├── ic_menu_delete_dark.png │ │ ├── ic_menu_delete_light.png │ │ ├── ic_menu_info_details_dark.png │ │ ├── ic_menu_info_details_light.png │ │ ├── ic_menu_install_dark.png │ │ ├── ic_menu_install_light.png │ │ ├── ic_menu_play_clip_dark.png │ │ ├── ic_menu_play_clip_light.png │ │ ├── ic_menu_refresh_dark.png │ │ ├── ic_menu_refresh_light.png │ │ ├── ic_menu_save_dark.png │ │ ├── ic_menu_save_light.png │ │ ├── ic_menu_search_dark.png │ │ ├── ic_menu_search_light.png │ │ ├── ic_menu_select_all_dark.png │ │ ├── ic_menu_select_all_light.png │ │ ├── ic_menu_settings_dark.png │ │ ├── ic_menu_settings_light.png │ │ ├── ic_menu_share_dark.png │ │ ├── ic_menu_share_light.png │ │ ├── ic_menu_stop_dark.png │ │ ├── ic_menu_stop_light.png │ │ ├── ic_menu_upload_dark.png │ │ ├── ic_menu_upload_light.png │ │ ├── list_focused_flavored.9.png │ │ ├── menu_dropdown_panel_flavored.9.png │ │ ├── myapplisttheme_btn_check_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_default_disabled_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_disabled_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_normal_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_pressed_holo_dark.9.png │ │ ├── myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_pressed_holo_dark.png │ │ ├── myapplisttheme_fastscroll_thumb_default_holo.png │ │ ├── myapplisttheme_fastscroll_thumb_pressed_holo.png │ │ ├── myapplisttheme_list_activated_holo.9.png │ │ ├── myapplisttheme_list_focused_holo.9.png │ │ ├── myapplisttheme_list_longpressed_holo.9.png │ │ ├── myapplisttheme_list_pressed_holo_dark.9.png │ │ ├── myapplisttheme_list_selector_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_default_holo_dark.9.png │ │ ├── myapplisttheme_spinner_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_focused_holo_dark.9.png │ │ ├── myapplisttheme_spinner_pressed_holo_dark.9.png │ │ ├── myapplistthemelight_btn_check_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_default_disabled_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_disabled_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_normal_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_pressed_holo_light.9.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_pressed_holo_light.png │ │ ├── myapplistthemelight_fastscroll_thumb_default_holo.png │ │ ├── myapplistthemelight_fastscroll_thumb_pressed_holo.png │ │ ├── myapplistthemelight_list_activated_holo.9.png │ │ ├── myapplistthemelight_list_focused_holo.9.png │ │ ├── myapplistthemelight_list_longpressed_holo.9.png │ │ ├── myapplistthemelight_list_pressed_holo_light.9.png │ │ ├── myapplistthemelight_list_selector_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_default_holo_light.9.png │ │ ├── myapplistthemelight_spinner_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_focused_holo_light.9.png │ │ ├── myapplistthemelight_spinner_pressed_holo_light.9.png │ │ ├── play_icon.png │ │ ├── progress_bg_flavored.9.png │ │ ├── progress_primary_flavored.9.png │ │ ├── progress_secondary_flavored.9.png │ │ ├── spinner_ab_default_flavored.9.png │ │ ├── spinner_ab_disabled_flavored.9.png │ │ ├── spinner_ab_focused_flavored.9.png │ │ ├── spinner_ab_pressed_flavored.9.png │ │ ├── tab_selected_flavored.9.png │ │ ├── tab_selected_focused_flavored.9.png │ │ ├── tab_selected_pressed_flavored.9.png │ │ ├── tab_unselected_focused_flavored.9.png │ │ ├── tab_unselected_pressed_flavored.9.png │ │ ├── underline_text_dark.9.png │ │ └── underline_text_light.9.png │ │ ├── drawable-nodpi │ │ ├── card_dark.9.png │ │ └── card_light.9.png │ │ ├── drawable-xhdpi │ │ ├── ab_bottom_solid_flavored.9.png │ │ ├── ab_solid_flavored.9.png │ │ ├── ab_stacked_solid_flavored.9.png │ │ ├── ab_transparent_flavored.9.png │ │ ├── btn_cab_done_default_flavored.9.png │ │ ├── btn_cab_done_focused_flavored.9.png │ │ ├── btn_cab_done_pressed_flavored.9.png │ │ ├── cab_background_bottom_flavored.9.png │ │ ├── cab_background_top_flavored.9.png │ │ ├── crouton_close.png │ │ ├── custom_share_dark.png │ │ ├── custom_share_light.png │ │ ├── ic_default_launcher.png │ │ ├── ic_find_previous_holo_dark.png │ │ ├── ic_find_previous_holo_light.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_copy_dark.png │ │ ├── ic_menu_copy_light.png │ │ ├── ic_menu_delete_dark.png │ │ ├── ic_menu_delete_light.png │ │ ├── ic_menu_info_details_dark.png │ │ ├── ic_menu_info_details_light.png │ │ ├── ic_menu_install_dark.png │ │ ├── ic_menu_install_light.png │ │ ├── ic_menu_play_clip_dark.png │ │ ├── ic_menu_play_clip_light.png │ │ ├── ic_menu_refresh_dark.png │ │ ├── ic_menu_refresh_light.png │ │ ├── ic_menu_save_dark.png │ │ ├── ic_menu_save_light.png │ │ ├── ic_menu_search_dark.png │ │ ├── ic_menu_search_light.png │ │ ├── ic_menu_select_all_dark.png │ │ ├── ic_menu_select_all_light.png │ │ ├── ic_menu_settings_dark.png │ │ ├── ic_menu_settings_light.png │ │ ├── ic_menu_share_dark.png │ │ ├── ic_menu_share_light.png │ │ ├── ic_menu_stop_dark.png │ │ ├── ic_menu_stop_light.png │ │ ├── ic_menu_upload_dark.png │ │ ├── ic_menu_upload_light.png │ │ ├── list_focused_flavored.9.png │ │ ├── menu_dropdown_panel_flavored.9.png │ │ ├── myapplisttheme_btn_check_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_default_disabled_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_disabled_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_normal_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_pressed_holo_dark.9.png │ │ ├── myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_pressed_holo_dark.png │ │ ├── myapplisttheme_fastscroll_thumb_default_holo.png │ │ ├── myapplisttheme_fastscroll_thumb_pressed_holo.png │ │ ├── myapplisttheme_list_activated_holo.9.png │ │ ├── myapplisttheme_list_focused_holo.9.png │ │ ├── myapplisttheme_list_longpressed_holo.9.png │ │ ├── myapplisttheme_list_pressed_holo_dark.9.png │ │ ├── myapplisttheme_list_selector_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_default_holo_dark.9.png │ │ ├── myapplisttheme_spinner_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_focused_holo_dark.9.png │ │ ├── myapplisttheme_spinner_pressed_holo_dark.9.png │ │ ├── myapplistthemelight_btn_check_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_default_disabled_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_disabled_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_normal_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_pressed_holo_light.9.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_pressed_holo_light.png │ │ ├── myapplistthemelight_fastscroll_thumb_default_holo.png │ │ ├── myapplistthemelight_fastscroll_thumb_pressed_holo.png │ │ ├── myapplistthemelight_list_activated_holo.9.png │ │ ├── myapplistthemelight_list_focused_holo.9.png │ │ ├── myapplistthemelight_list_longpressed_holo.9.png │ │ ├── myapplistthemelight_list_pressed_holo_light.9.png │ │ ├── myapplistthemelight_list_selector_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_default_holo_light.9.png │ │ ├── myapplistthemelight_spinner_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_focused_holo_light.9.png │ │ ├── myapplistthemelight_spinner_pressed_holo_light.9.png │ │ ├── play_icon.png │ │ ├── progress_bg_flavored.9.png │ │ ├── progress_primary_flavored.9.png │ │ ├── progress_secondary_flavored.9.png │ │ ├── spinner_ab_default_flavored.9.png │ │ ├── spinner_ab_disabled_flavored.9.png │ │ ├── spinner_ab_focused_flavored.9.png │ │ ├── spinner_ab_pressed_flavored.9.png │ │ ├── tab_selected_flavored.9.png │ │ ├── tab_selected_focused_flavored.9.png │ │ ├── tab_selected_pressed_flavored.9.png │ │ ├── tab_unselected_focused_flavored.9.png │ │ ├── tab_unselected_pressed_flavored.9.png │ │ ├── underline_text_dark.9.png │ │ └── underline_text_light.9.png │ │ ├── drawable-xxhdpi │ │ ├── ic_menu_copy_dark.png │ │ ├── ic_menu_copy_light.png │ │ ├── ic_menu_delete_dark.png │ │ ├── ic_menu_delete_light.png │ │ ├── ic_menu_info_details_dark.png │ │ ├── ic_menu_info_details_light.png │ │ ├── ic_menu_install_dark.png │ │ ├── ic_menu_install_light.png │ │ ├── ic_menu_play_clip_dark.png │ │ ├── ic_menu_play_clip_light.png │ │ ├── ic_menu_refresh_dark.png │ │ ├── ic_menu_refresh_light.png │ │ ├── ic_menu_save_dark.png │ │ ├── ic_menu_save_light.png │ │ ├── ic_menu_search_dark.png │ │ ├── ic_menu_search_light.png │ │ ├── ic_menu_select_all_dark.png │ │ ├── ic_menu_select_all_light.png │ │ ├── ic_menu_settings_dark.png │ │ ├── ic_menu_settings_light.png │ │ ├── ic_menu_share_dark.png │ │ ├── ic_menu_share_light.png │ │ ├── ic_menu_stop_dark.png │ │ ├── ic_menu_stop_light.png │ │ ├── ic_menu_upload_dark.png │ │ ├── ic_menu_upload_light.png │ │ ├── myapplisttheme_btn_check_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_holo_dark.png │ │ ├── myapplisttheme_btn_check_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_holo_dark.png │ │ ├── myapplisttheme_btn_check_on_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_default_disabled_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_disabled_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_focused_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_normal_holo_dark.9.png │ │ ├── myapplisttheme_btn_default_pressed_holo_dark.9.png │ │ ├── myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_holo_dark.png │ │ ├── myapplisttheme_btn_radio_off_pressed_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_disabled_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_focused_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_holo_dark.png │ │ ├── myapplisttheme_btn_radio_on_pressed_holo_dark.png │ │ ├── myapplisttheme_fastscroll_thumb_default_holo.png │ │ ├── myapplisttheme_fastscroll_thumb_pressed_holo.png │ │ ├── myapplisttheme_list_activated_holo.9.png │ │ ├── myapplisttheme_list_focused_holo.9.png │ │ ├── myapplisttheme_list_longpressed_holo.9.png │ │ ├── myapplisttheme_list_pressed_holo_dark.9.png │ │ ├── myapplisttheme_list_selector_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_default_holo_dark.9.png │ │ ├── myapplisttheme_spinner_disabled_holo_dark.9.png │ │ ├── myapplisttheme_spinner_focused_holo_dark.9.png │ │ ├── myapplisttheme_spinner_pressed_holo_dark.9.png │ │ ├── myapplistthemelight_btn_check_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_holo_light.png │ │ ├── myapplistthemelight_btn_check_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_holo_light.png │ │ ├── myapplistthemelight_btn_check_on_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_default_disabled_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_disabled_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_focused_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_normal_holo_light.9.png │ │ ├── myapplistthemelight_btn_default_pressed_holo_light.9.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_holo_light.png │ │ ├── myapplistthemelight_btn_radio_off_pressed_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_disabled_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_focused_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_holo_light.png │ │ ├── myapplistthemelight_btn_radio_on_pressed_holo_light.png │ │ ├── myapplistthemelight_fastscroll_thumb_default_holo.png │ │ ├── myapplistthemelight_fastscroll_thumb_pressed_holo.png │ │ ├── myapplistthemelight_list_activated_holo.9.png │ │ ├── myapplistthemelight_list_focused_holo.9.png │ │ ├── myapplistthemelight_list_longpressed_holo.9.png │ │ ├── myapplistthemelight_list_pressed_holo_light.9.png │ │ ├── myapplistthemelight_list_selector_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_default_holo_light.9.png │ │ ├── myapplistthemelight_spinner_disabled_holo_light.9.png │ │ ├── myapplistthemelight_spinner_focused_holo_light.9.png │ │ └── myapplistthemelight_spinner_pressed_holo_light.9.png │ │ ├── drawable │ │ ├── btn_cab_done_flavored.xml │ │ ├── myapplisttheme_activated_background_holo_dark.xml │ │ ├── myapplisttheme_btn_check_holo_dark.xml │ │ ├── myapplisttheme_btn_default_holo_dark.xml │ │ ├── myapplisttheme_btn_radio_holo_dark.xml │ │ ├── myapplisttheme_fastscroll_thumb_holo.xml │ │ ├── myapplisttheme_item_background_holo_dark.xml │ │ ├── myapplisttheme_list_selector_background_transition_holo_dark.xml │ │ ├── myapplisttheme_list_selector_holo_dark.xml │ │ ├── myapplisttheme_spinner_background_holo_dark.xml │ │ ├── myapplistthemelight_activated_background_holo_light.xml │ │ ├── myapplistthemelight_btn_check_holo_light.xml │ │ ├── myapplistthemelight_btn_default_holo_light.xml │ │ ├── myapplistthemelight_btn_radio_holo_light.xml │ │ ├── myapplistthemelight_fastscroll_thumb_holo.xml │ │ ├── myapplistthemelight_item_background_holo_light.xml │ │ ├── myapplistthemelight_list_selector_background_transition_holo_light.xml │ │ ├── myapplistthemelight_list_selector_holo_light.xml │ │ ├── myapplistthemelight_spinner_background_holo_light.xml │ │ ├── pressed_background_flavored.xml │ │ ├── progress_horizontal_flavored.xml │ │ ├── selectable_background_flavored.xml │ │ ├── spinner_background_ab_flavored.xml │ │ └── tab_indicator_ab_flavored.xml │ │ ├── layout-land │ │ └── activity_share.xml │ │ ├── layout-large-land │ │ ├── activity_list.xml │ │ └── activity_share.xml │ │ ├── layout │ │ ├── activity_install.xml │ │ ├── activity_list.xml │ │ ├── activity_picker_folder.xml │ │ ├── activity_share.xml │ │ ├── app_info.xml │ │ ├── crouton_rate.xml │ │ ├── fragment_list.xml │ │ ├── fragment_picker_folder.xml │ │ ├── list_item.xml │ │ ├── list_option.xml │ │ └── refresh_loading.xml │ │ ├── menu │ │ ├── adapter_app.xml │ │ ├── adapter_file.xml │ │ ├── fragment_app.xml │ │ ├── fragment_file.xml │ │ ├── fragment_ign.xml │ │ └── fragment_picker_folder.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-large │ │ ├── dimens.xml │ │ └── myapplisttheme_styles.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-v11 │ │ ├── myapplisttheme_styles.xml │ │ └── myapplisttheme_themes.xml │ │ ├── values-v14 │ │ ├── myapplisttheme_styles.xml │ │ └── myapplisttheme_themes.xml │ │ ├── values-xlarge │ │ └── dimens.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── myapplisttheme_styles.xml │ │ ├── myapplisttheme_themes.xml │ │ ├── plurals.xml │ │ └── strings.xml │ │ └── xml │ │ └── preferences.xml │ ├── open │ └── java │ │ └── com │ │ └── projectsexception │ │ └── myapplist │ │ └── app │ │ └── MyAppListApplication.java │ └── play │ └── java │ └── com │ └── projectsexception │ └── myapplist │ └── app │ └── MyAppListApplication.java ├── build.gradle └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by http://gitignore.io 2 | 3 | ### Android ### 4 | # built application files 5 | *.apk 6 | *.ap_ 7 | 8 | # files for the dex VM 9 | *.dex 10 | 11 | # Java class files 12 | *.class 13 | 14 | # generated files 15 | bin/ 16 | gen/ 17 | gen-external-apklibs/ 18 | 19 | # Maven 20 | target/ 21 | 22 | # Gradle 23 | .gradle/ 24 | build/ 25 | 26 | # Local configuration file (sdk path, etc) 27 | local.properties 28 | 29 | # Eclipse project files 30 | .classpath 31 | .project 32 | .settings/ 33 | 34 | # Proguard folder generated by Eclipse 35 | proguard/ 36 | 37 | # Intellij project files 38 | *.iml 39 | *.ipr 40 | *.iws 41 | .idea/ 42 | 43 | /application/libs/ 44 | 45 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "dependencies/android-utils"] 2 | path = dependencies/android-utils 3 | url = https://github.com/projectsexception/android-utils.git 4 | -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- 1 | # My App List 2 | 3 | ## Code acknowledgments 4 | 5 | * Jake Wharton for his work [ButterKnife](http://jakewharton.github.io/butterknife/) and [NineOldsAndroid](http://nineoldandroids.com/) 6 | * Manuel Peinado for [MultiChoiceAdapter](https://github.com/ManuelPeinado/MultiChoiceAdapter) 7 | * Benjamin Weiss for [Crouton](https://github.com/keyboardsurfer/Crouton/) 8 | * AnderWeb and [Androcode](http://androcode.es) for his [selectable elements tutorial](http://androcode.es/2012/03/seleccion-individualmultiple-de-elementos-en-un-listview/) 9 | * Passy for his code and inspiration with Android-DirectoryChooser (https://github.com/passy/Android-DirectoryChooser) 10 | 11 | ## Translators acknowledgments 12 | 13 | * [grzegorz888](http://crowdin.net/profile/grzegorz888) 14 | * [Valie](http://crowdin.net/profile/Valie) 15 | * [Grisoo21](http://crowdin.net/profile/Grisoo21) 16 | * [niu541412](http://crowdin.net/profile/niu541412) 17 | -------------------------------------------------------------------------------- /application/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 edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-16 15 | android.library.reference.1=../contrib/ActionBarSherlock/actionbarsherlock 16 | android.library.reference.2=../contrib/MultiChoiceAdapter/library 17 | 18 | -------------------------------------------------------------------------------- /application/src/main/assets/fonts/Roboto-BoldCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/assets/fonts/Roboto-BoldCondensed.ttf -------------------------------------------------------------------------------- /application/src/main/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /application/src/main/java/com/projectsexception/myapplist/view/AnimationUtil.java: -------------------------------------------------------------------------------- 1 | package com.projectsexception.myapplist.view; 2 | 3 | import android.view.View; 4 | import android.view.animation.DecelerateInterpolator; 5 | 6 | import com.nineoldandroids.animation.AnimatorSet; 7 | import com.nineoldandroids.animation.ObjectAnimator; 8 | 9 | public class AnimationUtil { 10 | 11 | public static void animateIn(View view) { 12 | // ObjectAnimator anim = ObjectAnimator.ofFloat(view, "alpha", 0f, 1f); 13 | // anim.setDuration(500); 14 | // anim.start(); 15 | AnimatorSet set = new AnimatorSet(); 16 | set.playTogether( 17 | ObjectAnimator.ofFloat(view, "rotationX", 30, 0), 18 | ObjectAnimator.ofFloat(view, "alpha", 1, 0.25f, 1) 19 | ); 20 | set.setDuration(600); 21 | set.setStartDelay(150); 22 | set.setInterpolator(new DecelerateInterpolator()); 23 | set.start(); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /application/src/main/java/com/projectsexception/myapplist/xml/ParserException.java: -------------------------------------------------------------------------------- 1 | package com.projectsexception.myapplist.xml; 2 | 3 | 4 | public class ParserException extends Throwable { 5 | 6 | private static final long serialVersionUID = -6741657467127834584L; 7 | 8 | public ParserException(String mensaje) { 9 | super(mensaje); 10 | } 11 | 12 | public ParserException(Exception e) { 13 | super(e); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ab_bottom_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ab_bottom_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ab_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ab_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ab_stacked_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ab_stacked_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ab_transparent_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ab_transparent_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/btn_cab_done_default_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/btn_cab_done_default_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/btn_cab_done_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/btn_cab_done_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/btn_cab_done_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/btn_cab_done_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/cab_background_bottom_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/cab_background_bottom_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/cab_background_top_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/cab_background_top_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/crouton_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/crouton_close.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/custom_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/custom_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/custom_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/custom_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_default_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_default_launcher.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_find_previous_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_find_previous_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_find_previous_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_find_previous_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_copy_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_copy_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_copy_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_copy_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_delete_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_delete_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_info_details_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_info_details_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_info_details_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_info_details_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_install_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_install_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_install_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_install_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_play_clip_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_play_clip_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_play_clip_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_play_clip_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_refresh_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_refresh_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_save_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_save_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_save_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_save_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_search_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_search_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_select_all_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_select_all_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_settings_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_settings_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_stop_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_stop_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_stop_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_stop_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_upload_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_upload_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/ic_menu_upload_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/ic_menu_upload_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/list_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/list_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/menu_dropdown_panel_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/menu_dropdown_panel_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_spinner_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_spinner_default_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_spinner_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_spinner_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_spinner_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_spinner_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplisttheme_spinner_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplisttheme_spinner_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/myapplistthemelight_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/play_icon.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/progress_bg_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/progress_bg_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/progress_primary_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/progress_primary_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/progress_secondary_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/progress_secondary_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/spinner_ab_default_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/spinner_ab_default_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/spinner_ab_disabled_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/spinner_ab_disabled_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/spinner_ab_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/spinner_ab_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/spinner_ab_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/spinner_ab_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/tab_selected_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/tab_selected_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/tab_selected_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/tab_selected_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/tab_selected_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/tab_selected_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/tab_unselected_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/tab_unselected_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/tab_unselected_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/tab_unselected_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/underline_text_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/underline_text_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-hdpi/underline_text_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-hdpi/underline_text_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-ldpi/custom_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-ldpi/custom_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-ldpi/custom_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-ldpi/custom_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ab_bottom_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ab_bottom_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ab_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ab_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ab_stacked_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ab_stacked_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ab_transparent_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ab_transparent_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/btn_cab_done_default_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/btn_cab_done_default_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/btn_cab_done_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/btn_cab_done_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/btn_cab_done_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/btn_cab_done_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/cab_background_bottom_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/cab_background_bottom_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/cab_background_top_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/cab_background_top_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/crouton_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/crouton_close.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/custom_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/custom_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/custom_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/custom_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_default_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_default_launcher.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_find_previous_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_find_previous_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_find_previous_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_find_previous_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_copy_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_copy_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_copy_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_copy_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_delete_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_delete_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_info_details_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_info_details_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_info_details_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_info_details_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_install_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_install_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_install_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_install_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_play_clip_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_play_clip_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_play_clip_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_play_clip_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_refresh_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_refresh_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_save_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_save_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_save_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_save_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_search_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_search_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_select_all_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_select_all_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_settings_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_settings_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_stop_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_stop_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_stop_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_stop_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_upload_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_upload_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/ic_menu_upload_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/ic_menu_upload_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/list_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/list_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/menu_dropdown_panel_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/menu_dropdown_panel_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_spinner_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_spinner_default_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_spinner_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_spinner_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_spinner_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_spinner_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplisttheme_spinner_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplisttheme_spinner_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/myapplistthemelight_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/play_icon.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/progress_bg_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/progress_bg_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/progress_primary_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/progress_primary_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/progress_secondary_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/progress_secondary_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/spinner_ab_default_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/spinner_ab_default_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/spinner_ab_disabled_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/spinner_ab_disabled_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/spinner_ab_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/spinner_ab_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/spinner_ab_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/spinner_ab_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/tab_selected_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/tab_selected_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/tab_selected_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/tab_selected_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/tab_selected_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/tab_selected_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/tab_unselected_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/tab_unselected_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/tab_unselected_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/tab_unselected_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/underline_text_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/underline_text_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-mdpi/underline_text_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-mdpi/underline_text_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-nodpi/card_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-nodpi/card_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-nodpi/card_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-nodpi/card_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ab_bottom_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ab_bottom_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ab_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ab_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ab_stacked_solid_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ab_stacked_solid_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ab_transparent_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ab_transparent_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/btn_cab_done_default_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/btn_cab_done_default_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/btn_cab_done_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/btn_cab_done_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/btn_cab_done_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/btn_cab_done_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/cab_background_bottom_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/cab_background_bottom_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/cab_background_top_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/cab_background_top_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/crouton_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/crouton_close.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/custom_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/custom_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/custom_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/custom_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_default_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_default_launcher.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_find_previous_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_find_previous_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_find_previous_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_find_previous_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_copy_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_copy_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_copy_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_copy_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_delete_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_delete_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_info_details_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_info_details_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_info_details_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_info_details_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_install_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_install_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_install_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_install_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_play_clip_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_play_clip_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_play_clip_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_play_clip_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_refresh_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_refresh_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_save_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_save_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_save_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_save_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_search_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_search_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_select_all_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_select_all_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_settings_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_settings_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_stop_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_stop_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_stop_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_stop_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_upload_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_upload_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/ic_menu_upload_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/ic_menu_upload_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/list_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/list_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/menu_dropdown_panel_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/menu_dropdown_panel_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_default_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplisttheme_spinner_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/myapplistthemelight_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/play_icon.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/progress_bg_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/progress_bg_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/progress_primary_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/progress_primary_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/progress_secondary_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/progress_secondary_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/spinner_ab_default_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/spinner_ab_default_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/spinner_ab_disabled_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/spinner_ab_disabled_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/spinner_ab_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/spinner_ab_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/spinner_ab_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/spinner_ab_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/tab_selected_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/tab_selected_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/tab_selected_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/tab_selected_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/tab_selected_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/tab_selected_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/tab_unselected_focused_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/tab_unselected_focused_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/tab_unselected_pressed_flavored.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/tab_unselected_pressed_flavored.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/underline_text_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/underline_text_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xhdpi/underline_text_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xhdpi/underline_text_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_copy_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_copy_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_copy_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_copy_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_delete_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_delete_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_delete_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_info_details_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_info_details_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_info_details_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_info_details_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_install_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_install_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_install_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_install_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_play_clip_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_play_clip_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_play_clip_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_play_clip_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_refresh_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_refresh_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_refresh_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_save_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_save_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_save_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_save_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_search_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_search_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_select_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_select_all_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_select_all_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_select_all_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_settings_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_settings_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_share_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_share_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_share_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_stop_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_stop_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_stop_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_stop_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_upload_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_upload_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/ic_menu_upload_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/ic_menu_upload_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_default_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_focused_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplisttheme_spinner_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_activated_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_focused_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedefernandez/MyAppList/63d37c92d12ade155582646558c65bd61c96d62d/application/src/main/res/drawable-xxhdpi/myapplistthemelight_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /application/src/main/res/drawable/myapplisttheme_activated_background_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /application/src/main/res/drawable/myapplisttheme_fastscroll_thumb_holo.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /application/src/main/res/drawable/myapplisttheme_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /application/src/main/res/drawable/myapplistthemelight_activated_background_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /application/src/main/res/drawable/myapplistthemelight_fastscroll_thumb_holo.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /application/src/main/res/drawable/myapplistthemelight_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /application/src/main/res/drawable/pressed_background_flavored.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /application/src/main/res/layout-large-land/activity_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /application/src/main/res/layout/activity_install.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 19 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /application/src/main/res/layout/activity_list.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/src/main/res/layout/activity_picker_folder.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/src/main/res/layout/crouton_rate.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 19 | 20 | 27 | 28 | -------------------------------------------------------------------------------- /application/src/main/res/layout/fragment_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 15 | 16 | 21 | 22 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /application/src/main/res/layout/list_option.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/src/main/res/layout/refresh_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /application/src/main/res/menu/adapter_app.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 16 | 21 | 22 | -------------------------------------------------------------------------------- /application/src/main/res/menu/adapter_file.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /application/src/main/res/menu/fragment_app.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 16 | 21 | 26 | 31 | 32 | -------------------------------------------------------------------------------- /application/src/main/res/menu/fragment_ign.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /application/src/main/res/menu/fragment_picker_folder.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /application/src/main/res/values-large/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48dp 4 | 12dp 5 | 64dp 6 | 15dp 7 | 20dp 8 | 80dp 9 | 64dp 10 | 30dp 11 | 50dp 12 | 50dp 13 | 24sp 14 | 20sp 15 | 15sp 16 | 20sp 17 | 25dp 18 | -------------------------------------------------------------------------------- /application/src/main/res/values-large/myapplisttheme_styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /application/src/main/res/values-v14/myapplisttheme_styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /application/src/main/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 40dp 4 | -------------------------------------------------------------------------------- /application/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @string/theme_dark 5 | @string/theme_light 6 | @string/theme_dark_flavored 7 | @string/theme_light_flavored 8 | 9 | 10 | 0 11 | 1 12 | 2 13 | 3 14 | 15 | -------------------------------------------------------------------------------- /application/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF4444 4 | #99CC00 5 | #33B5E5 6 | #0099CC 7 | #313131 8 | #d1d1d1 9 | #CC33B5E5 10 | #ff4444 11 | #cc0000 12 | #0099CC 13 | -------------------------------------------------------------------------------- /application/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 32dp 4 | 1px 5 | 64dp 6 | 32dp 7 | 10dp 8 | 48dp 9 | 12dp 10 | 10dp 11 | 15sp 12 | 12sp 13 | 10dp 14 | 48dp 15 | 10dp 16 | 10dp 17 | 10dp 18 | 20sp 19 | 5sp 20 | 16sp 21 | 16sp 22 | 15dp 23 | -------------------------------------------------------------------------------- /application/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Check this application 5 | Check this applications 6 | 7 | -------------------------------------------------------------------------------- /application/src/open/java/com/projectsexception/myapplist/app/MyAppListApplication.java: -------------------------------------------------------------------------------- 1 | package com.projectsexception.myapplist.app; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.projectsexception.myapplist.BuildConfig; 7 | import com.projectsexception.util.CustomLog; 8 | 9 | public class MyAppListApplication extends Application { 10 | 11 | public static final String LOG_TAG = "MyAppList"; 12 | public static final int LOG_LEVEL = BuildConfig.DEBUG ? Log.DEBUG : Log.INFO; 13 | 14 | public void analyticsSetScreenName(String screenName) { 15 | 16 | } 17 | 18 | public void analyticsSend() { 19 | 20 | } 21 | 22 | @Override 23 | public void onCreate() { 24 | super.onCreate(); 25 | CustomLog.initLog(LOG_TAG, LOG_LEVEL); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | allprojects { 3 | repositories { 4 | mavenCentral() 5 | mavenLocal() 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':dependencies:android-utils', ':application' 2 | --------------------------------------------------------------------------------