├── .gitignore ├── AndroidManifest.xml ├── Backups ├── FlashLight.3 │ └── AndroidManifest.xml └── FlashLight.4 │ └── AndroidManifest.xml ├── Change.log ├── README.md ├── TODO ├── appcompat ├── .classpath ├── .project ├── AndroidManifest.xml ├── README.txt ├── bin │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.d │ ├── R.txt │ ├── build.prop │ ├── classes.jar │ ├── classes │ │ └── android │ │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ ├── BuildConfig.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ ├── jarlist.cache │ ├── proguard.txt │ └── res │ │ ├── drawable-hdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ ├── drawable-ldrtl-hdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-mdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-xhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-xxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-xxxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-mdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ ├── drawable-xhdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ ├── drawable-xxhdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ └── drawable-xxxhdpi │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ └── abc_tab_indicator_mtrl_alpha.9.png ├── build.xml ├── gen │ ├── R.java.d │ └── android │ │ └── support │ │ └── v7 │ │ └── appcompat │ │ ├── BuildConfig.java │ │ └── R.java ├── libs │ ├── android-support-v4.jar │ └── android-support-v7-appcompat.jar ├── local.properties ├── proguard-project.txt ├── project.properties ├── res-public │ └── values │ │ ├── public_attrs.xml │ │ ├── public_layouts.xml │ │ └── public_styles.xml ├── res │ ├── anim │ │ ├── abc_fade_in.xml │ │ ├── abc_fade_out.xml │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ ├── abc_popup_enter.xml │ │ ├── abc_popup_exit.xml │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ ├── abc_slide_in_bottom.xml │ │ ├── abc_slide_in_top.xml │ │ ├── abc_slide_out_bottom.xml │ │ └── abc_slide_out_top.xml │ ├── color-v11 │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ └── abc_background_cache_hint_selector_material_light.xml │ ├── color-v23 │ │ └── abc_color_highlight_material.xml │ ├── color │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ ├── abc_primary_text_material_dark.xml │ │ ├── abc_primary_text_material_light.xml │ │ ├── abc_search_url_text.xml │ │ ├── abc_secondary_text_material_dark.xml │ │ ├── abc_secondary_text_material_light.xml │ │ ├── switch_thumb_material_dark.xml │ │ └── switch_thumb_material_light.xml │ ├── drawable-hdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-ldrtl-hdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-mdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-mdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-v21 │ │ ├── abc_action_bar_item_background_material.xml │ │ ├── abc_btn_colored_material.xml │ │ └── abc_edit_text_material.xml │ ├── drawable-v23 │ │ └── abc_control_background_material.xml │ ├── drawable-xhdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xxhdpi │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xxxhdpi │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_star_black_16dp.png │ │ ├── abc_ic_star_black_36dp.png │ │ ├── abc_ic_star_half_black_16dp.png │ │ ├── abc_ic_star_half_black_36dp.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ ├── drawable │ │ ├── abc_btn_borderless_material.xml │ │ ├── abc_btn_check_material.xml │ │ ├── abc_btn_colored_material.xml │ │ ├── abc_btn_default_mtrl_shape.xml │ │ ├── abc_btn_radio_material.xml │ │ ├── abc_cab_background_internal_bg.xml │ │ ├── abc_cab_background_top_material.xml │ │ ├── abc_dialog_material_background_dark.xml │ │ ├── abc_dialog_material_background_light.xml │ │ ├── abc_edit_text_material.xml │ │ ├── abc_item_background_holo_dark.xml │ │ ├── abc_item_background_holo_light.xml │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ ├── abc_list_selector_holo_dark.xml │ │ ├── abc_list_selector_holo_light.xml │ │ ├── abc_ratingbar_full_material.xml │ │ ├── abc_ratingbar_indicator_material.xml │ │ ├── abc_ratingbar_small_material.xml │ │ ├── abc_seekbar_thumb_material.xml │ │ ├── abc_seekbar_track_material.xml │ │ ├── abc_spinner_textfield_background_material.xml │ │ ├── abc_switch_thumb_material.xml │ │ ├── abc_tab_indicator_material.xml │ │ ├── abc_text_cursor_material.xml │ │ └── abc_textfield_search_material.xml │ ├── layout │ │ ├── abc_action_bar_title_item.xml │ │ ├── abc_action_bar_up_container.xml │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ ├── abc_action_menu_item_layout.xml │ │ ├── abc_action_menu_layout.xml │ │ ├── abc_action_mode_bar.xml │ │ ├── abc_action_mode_close_item_material.xml │ │ ├── abc_activity_chooser_view.xml │ │ ├── abc_activity_chooser_view_list_item.xml │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ ├── abc_alert_dialog_material.xml │ │ ├── abc_dialog_title_material.xml │ │ ├── abc_expanded_menu_layout.xml │ │ ├── abc_list_menu_item_checkbox.xml │ │ ├── abc_list_menu_item_icon.xml │ │ ├── abc_list_menu_item_layout.xml │ │ ├── abc_list_menu_item_radio.xml │ │ ├── abc_popup_menu_item_layout.xml │ │ ├── abc_screen_content_include.xml │ │ ├── abc_screen_simple.xml │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ ├── abc_screen_toolbar.xml │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ ├── abc_search_view.xml │ │ ├── abc_select_dialog_material.xml │ │ ├── notification_media_action.xml │ │ ├── notification_media_cancel_action.xml │ │ ├── notification_template_big_media.xml │ │ ├── notification_template_big_media_narrow.xml │ │ ├── notification_template_lines.xml │ │ ├── notification_template_media.xml │ │ ├── notification_template_part_chronometer.xml │ │ ├── notification_template_part_time.xml │ │ ├── select_dialog_item_material.xml │ │ ├── select_dialog_multichoice_material.xml │ │ ├── select_dialog_singlechoice_material.xml │ │ └── support_simple_spinner_dropdown_item.xml │ ├── values-af │ │ └── strings.xml │ ├── values-am │ │ └── strings.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-az-rAZ │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-bn-rBD │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rAU │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-en-rIN │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et-rEE │ │ └── strings.xml │ ├── values-eu-rES │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr-rCA │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-gl-rES │ │ └── strings.xml │ ├── values-gu-rIN │ │ └── strings.xml │ ├── values-h320dp │ │ └── bools.xml │ ├── values-h720dp │ │ └── dimens.xml │ ├── values-hdpi │ │ └── styles_base.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-hy-rAM │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is-rIS │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka-rGE │ │ └── strings.xml │ ├── values-kk-rKZ │ │ └── strings.xml │ ├── values-km-rKH │ │ └── strings.xml │ ├── values-kn-rIN │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-ky-rKG │ │ └── strings.xml │ ├── values-land │ │ ├── bools.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── dimens_material.xml │ ├── values-large │ │ ├── bools.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── themes_base.xml │ ├── values-ldltr-v21 │ │ └── styles_base.xml │ ├── values-lo-rLA │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mk-rMK │ │ └── strings.xml │ ├── values-ml-rIN │ │ └── strings.xml │ ├── values-mn-rMN │ │ └── strings.xml │ ├── values-mr-rIN │ │ └── strings.xml │ ├── values-ms-rMY │ │ └── strings.xml │ ├── values-my-rMM │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-ne-rNP │ │ └── strings.xml │ ├── values-night │ │ └── themes_daynight.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pa-rIN │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-port │ │ └── bools.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-si-rLK │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sq-rAL │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-sw │ │ └── strings.xml │ ├── values-sw600dp │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-ta-rIN │ │ └── strings.xml │ ├── values-te-rIN │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tl │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur-rPK │ │ └── strings.xml │ ├── values-uz-rUZ │ │ └── strings.xml │ ├── values-v11 │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-v12 │ │ └── styles_base.xml │ ├── values-v13 │ │ └── bools.xml │ ├── values-v14 │ │ ├── styles.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-v17 │ │ └── styles_rtl.xml │ ├── values-v18 │ │ └── dimens.xml │ ├── values-v21 │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-v22 │ │ └── themes_base.xml │ ├── values-v23 │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-w360dp │ │ └── dimens.xml │ ├── values-w480dp │ │ ├── bools.xml │ │ └── config.xml │ ├── values-w500dp │ │ └── dimens.xml │ ├── values-w600dp │ │ └── dimens.xml │ ├── values-w720dp │ │ └── bools.xml │ ├── values-xlarge-land │ │ └── dimens.xml │ ├── values-xlarge │ │ ├── bools.xml │ │ └── dimens.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rHK │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values-zu │ │ └── strings.xml │ └── values │ │ ├── attrs.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── colors_material.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── dimens_material.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ ├── styles_rtl.xml │ │ ├── themes.xml │ │ ├── themes_base.xml │ │ └── themes_daynight.xml └── src │ └── .readme ├── libs ├── activation.jar ├── additionnal.jar └── mail.jar ├── local.properties ├── project.properties ├── res ├── drawable-hdpi │ ├── check.xml │ ├── edit_text.xml │ ├── ic_launcher.png │ ├── power_button_off_120x120.png │ └── power_button_on_120x120.png ├── drawable-ldpi │ ├── check.xml │ ├── edit_text.xml │ ├── ic_launcher.png │ ├── power_button_off_120x120.png │ └── power_button_on_120x120.png ├── drawable-mdpi │ ├── check.xml │ ├── edit_text.xml │ ├── ic_launcher.png │ ├── power_button_off_120x120.png │ └── power_button_on_120x120.png ├── drawable-xhdpi │ ├── check.xml │ ├── edit_text.xml │ ├── ic_launcher.png │ ├── power_button_off_120x120.png │ └── power_button_on_120x120.png ├── drawable-xxhdpi │ ├── check.xml │ ├── edit_text.xml │ ├── ic_launcher.png │ ├── power_button_off_120x120.png │ └── power_button_on_120x120.png ├── drawable-xxxhdpi │ ├── check.xml │ ├── edit_text.xml │ ├── ic_launcher.png │ ├── power_button_off_120x120.png │ └── power_button_on_120x120.png ├── layout │ ├── configure.xml │ └── main.xml ├── menu │ └── menu.xml └── values │ ├── .strings.xml.swp │ └── strings.xml └── src └── com └── flash └── light ├── AlarmReceiver.java ├── CallReceiver.java ├── Configure.java ├── Contacts.java ├── DatabaseHandler.java ├── Eula.java ├── FlashLight.java ├── FlashLightDatabase.java ├── FlashLightService.java ├── GmailSender.java ├── JSSEProvider.java ├── MarshmellowPermissions.java ├── PhoneCallReceiver.java ├── SMSObserver.java └── SMSReceiver.java /.gitignore: -------------------------------------------------------------------------------- 1 | gen/* 2 | bin/* 3 | appcompat/gen/* 4 | appcompat/bin/* 5 | *.sw* 6 | *.backu* 7 | build.xml 8 | -------------------------------------------------------------------------------- /Change.log: -------------------------------------------------------------------------------- 1 | Aguevara 2 | Sunday April 3, 2016 - 10:11pm 3 | Changed ButtonImage to a ToggleImage. 4 | Fixed FC's while running in background. 5 | Running torch as a service to allow it to run in the bckground. 6 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | TODO 2 | 3 | 1) Add persistance to the torch. For example, have it run even when the app is not in the foreground. 4 | 5 | 2) Add preferences menu 6 | -------------------------------------------------------------------------------- /appcompat/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /appcompat/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | android-support-v7-appcompat 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /appcompat/README.txt: -------------------------------------------------------------------------------- 1 | Library Project including compatibility ActionBar. 2 | 3 | This can be used by an Android project to provide 4 | access to ActionBar on applications running on API 7+. 5 | 6 | There is technically no source, but the src folder is necessary 7 | to ensure that the build system works. The content is actually 8 | located in libs/android-support-v7-appcompat.jar. 9 | The accompanying resources must also be included in the application. 10 | 11 | -------------------------------------------------------------------------------- /appcompat/bin/AndroidManifest.xml.d: -------------------------------------------------------------------------------- 1 | /home/anthony/Documents/Java/FlashLight/appcompat/bin/AndroidManifest.xml : \ 2 | /home/anthony/Documents/Java/FlashLight/appcompat/AndroidManifest.xml \ 3 | -------------------------------------------------------------------------------- /appcompat/bin/build.prop: -------------------------------------------------------------------------------- 1 | #Last build type 2 | #Mon, 14 May 2018 14:44:07 -0400 3 | 4 | build.last.target=debug 5 | 6 | build.last.is.instrumented=false 7 | 8 | build.last.is.packaging.debug=true 9 | 10 | build.last.is.signing.debug=true 11 | -------------------------------------------------------------------------------- /appcompat/bin/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes.jar -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/BuildConfig.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /appcompat/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /appcompat/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/bin/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/bin/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/gen/android/support/v7/appcompat/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package android.support.v7.appcompat; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /appcompat/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/libs/android-support-v4.jar -------------------------------------------------------------------------------- /appcompat/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /appcompat/local.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 *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/home/anthony/android-sdk-linux 11 | -------------------------------------------------------------------------------- /appcompat/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /appcompat/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-23 15 | android.library=true 16 | -------------------------------------------------------------------------------- /appcompat/res-public/values/public_layouts.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/color/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/color/switch_thumb_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat/res/drawable-v23/abc_control_background_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_star_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_star_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_star_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_star_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_star_half_black_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_star_half_black_16dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_star_half_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_star_half_black_36dp.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_colored_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_text_cursor_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/values-h320dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/values-h720dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 54dip 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/values-land/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/values-land/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 32dp 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/values-large/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/values-port/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | false 20 | 21 | 22 | -------------------------------------------------------------------------------- /appcompat/res/values-v13/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | false 21 | 22 | -------------------------------------------------------------------------------- /appcompat/res/values-v18/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 0px 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat/res/values-w720dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | -------------------------------------------------------------------------------- /appcompat/res/values-xlarge-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 256dip 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | -------------------------------------------------------------------------------- /appcompat/src/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /libs/activation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/libs/activation.jar -------------------------------------------------------------------------------- /libs/additionnal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/libs/additionnal.jar -------------------------------------------------------------------------------- /libs/mail.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/libs/mail.jar -------------------------------------------------------------------------------- /local.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 *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/home/anthony/android-sdk-linux 11 | -------------------------------------------------------------------------------- /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-23 15 | android.library.reference.1=appcompat 16 | -------------------------------------------------------------------------------- /res/drawable-hdpi/check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable-hdpi/edit_text.xml: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/power_button_off_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-hdpi/power_button_off_120x120.png -------------------------------------------------------------------------------- /res/drawable-hdpi/power_button_on_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-hdpi/power_button_on_120x120.png -------------------------------------------------------------------------------- /res/drawable-ldpi/check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable-ldpi/edit_text.xml: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/power_button_off_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-ldpi/power_button_off_120x120.png -------------------------------------------------------------------------------- /res/drawable-ldpi/power_button_on_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-ldpi/power_button_on_120x120.png -------------------------------------------------------------------------------- /res/drawable-mdpi/check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable-mdpi/edit_text.xml: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/power_button_off_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-mdpi/power_button_off_120x120.png -------------------------------------------------------------------------------- /res/drawable-mdpi/power_button_on_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-mdpi/power_button_on_120x120.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable-xhdpi/edit_text.xml: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/power_button_off_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xhdpi/power_button_off_120x120.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/power_button_on_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xhdpi/power_button_on_120x120.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable-xxhdpi/edit_text.xml: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/power_button_off_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xxhdpi/power_button_off_120x120.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/power_button_on_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xxhdpi/power_button_on_120x120.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/edit_text.xml: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/power_button_off_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xxxhdpi/power_button_off_120x120.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/power_button_on_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/drawable-xxxhdpi/power_button_on_120x120.png -------------------------------------------------------------------------------- /res/menu/menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /res/values/.strings.xml.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amboxer21/FlashLight/7e79234eb6ab1fa38066e2955ec15f7debf6c2f6/res/values/.strings.xml.swp -------------------------------------------------------------------------------- /src/com/flash/light/JSSEProvider.java: -------------------------------------------------------------------------------- 1 | package com.flash.light; 2 | 3 | import java.security.Provider; 4 | import java.security.AccessController; 5 | 6 | public final class JSSEProvider extends Provider { 7 | 8 | public JSSEProvider() { 9 | super("HarmonyJSSE", 1.0, "Harmony JSSE Provider"); 10 | AccessController.doPrivileged(new java.security.PrivilegedAction() { 11 | public Void run() { 12 | put("SSLContext.TLS", "org.apache.harmony.xnet.provider.jsse.SSLContextImpl"); 13 | put("Alg.Alias.SSLContext.TLSv1", "TLS"); 14 | put("KeyManagerFactory.X509", "org.apache.harmony.xnet.provider.jsse.KeyManagerFactoryImpl"); 15 | put("TrustManagerFactory.X509", "org.apache.harmony.xnet.provider.jsse.TrustManagerFactoryImpl"); 16 | return null; 17 | } 18 | }); 19 | } 20 | } 21 | --------------------------------------------------------------------------------