├── Audio ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── Audio.apk │ ├── R.txt │ ├── classes.dex │ ├── classes │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── 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 │ │ ├── com │ │ │ └── example │ │ │ │ └── audio │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── FrameLayoutFixed.class │ │ │ │ ├── MainActivity$1.class │ │ │ │ ├── MainActivity$MyTimerTask$1.class │ │ │ │ ├── MainActivity$MyTimerTask.class │ │ │ │ ├── MainActivity.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$menu.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ └── ui │ │ │ ├── Animation │ │ │ └── View10.class │ │ │ └── ViewProxy.class │ ├── dexedLibs │ │ ├── android-support-v4-0fdc59e43dbe9a769ed7136190b8ba9d.jar │ │ ├── android-support-v7-appcompat-3194ecbc242f9187dab0b2b79d9f06e9.jar │ │ └── appcompat_v7-66b8b3fed50cd5a5267069918dc6e4b7.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── rec.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── mic.png │ │ │ ├── mic_pressed.png │ │ │ └── slidearrow.png │ └── resources.ap_ ├── gen │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── com │ │ └── example │ │ └── audio │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── mic_button_states.xml │ │ └── rec.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ ├── ic_launcher.png │ │ ├── mic.png │ │ ├── mic_pressed.png │ │ └── slidearrow.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ ├── com │ └── example │ │ └── audio │ │ ├── FrameLayoutFixed.java │ │ └── MainActivity.java │ └── ui │ ├── Animation │ └── View10.java │ └── ViewProxy.java ├── README.md └── appcompat_v7 ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.txt ├── bin ├── AndroidManifest.xml ├── R.txt ├── appcompat_v7.jar ├── classes │ ├── .readme │ └── 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 └── res │ └── crunch │ ├── drawable-hdpi │ ├── abc_ab_share_pack_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_search_api_mtrl_alpha.png │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ ├── abc_spinner_mtrl_am_alpha.9.png │ ├── abc_switch_track_mtrl_alpha.9.png │ └── abc_tab_indicator_mtrl_alpha.9.png ├── gen └── android │ └── support │ └── v7 │ └── appcompat │ ├── BuildConfig.java │ └── R.java ├── libs ├── android-support-v4.jar └── android-support-v7-appcompat.jar ├── project.properties ├── res ├── anim │ ├── abc_fade_in.xml │ ├── abc_fade_out.xml │ ├── abc_slide_in_bottom.xml │ ├── abc_slide_in_top.xml │ ├── abc_slide_out_bottom.xml │ └── abc_slide_out_top.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 ├── drawable-hdpi │ ├── abc_ab_share_pack_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_holo_dark.9.png │ ├── abc_ab_share_pack_holo_light.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_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_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_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_search_api_mtrl_alpha.png │ ├── abc_ic_voice_search_api_mtrl_alpha.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_check_material.xml │ ├── abc_btn_radio_material.xml │ ├── abc_cab_background_internal_bg.xml │ ├── abc_cab_background_top_material.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_switch_thumb_material.xml │ ├── abc_tab_indicator_material.xml │ └── abc_textfield_search_material.xml ├── layout-v11 │ └── abc_screen_content_include.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_include.xml │ ├── abc_activity_chooser_view_list_item.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_simple_dropdown_hint.xml │ └── support_simple_spinner_dropdown_item.xml ├── values-af │ └── strings.xml ├── values-am │ └── strings.xml ├── values-ar │ └── 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-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-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-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-nl │ └── strings.xml ├── values-pl │ └── strings.xml ├── values-port │ └── bools.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-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-v14 │ └── themes_base.xml ├── values-v17 │ └── styles_rtl.xml ├── values-v21 │ ├── 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 └── src └── .readme /Audio/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Audio/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Audio 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 | -------------------------------------------------------------------------------- /Audio/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Audio/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Audio/bin/Audio.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/Audio.apk -------------------------------------------------------------------------------- /Audio/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes.dex -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/BuildConfig.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/FrameLayoutFixed.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/FrameLayoutFixed.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/MainActivity$1.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/MainActivity$MyTimerTask$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/MainActivity$MyTimerTask$1.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/MainActivity$MyTimerTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/MainActivity$MyTimerTask.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/MainActivity.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$anim.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$attr.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$bool.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$color.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$dimen.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$drawable.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$id.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$integer.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$layout.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$menu.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$string.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$style.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R$styleable.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/com/example/audio/R.class -------------------------------------------------------------------------------- /Audio/bin/classes/ui/Animation/View10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/ui/Animation/View10.class -------------------------------------------------------------------------------- /Audio/bin/classes/ui/ViewProxy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/classes/ui/ViewProxy.class -------------------------------------------------------------------------------- /Audio/bin/dexedLibs/android-support-v4-0fdc59e43dbe9a769ed7136190b8ba9d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/dexedLibs/android-support-v4-0fdc59e43dbe9a769ed7136190b8ba9d.jar -------------------------------------------------------------------------------- /Audio/bin/dexedLibs/android-support-v7-appcompat-3194ecbc242f9187dab0b2b79d9f06e9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/dexedLibs/android-support-v7-appcompat-3194ecbc242f9187dab0b2b79d9f06e9.jar -------------------------------------------------------------------------------- /Audio/bin/dexedLibs/appcompat_v7-66b8b3fed50cd5a5267069918dc6e4b7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/dexedLibs/appcompat_v7-66b8b3fed50cd5a5267069918dc6e4b7.jar -------------------------------------------------------------------------------- /Audio/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1424758187611 987314 3b20dc871d179ba476082efe543dc1b38db46e30 E:\December\LockApp\Audio\libs\android-support-v4.jar 5 | 1413608225062 987314 3b20dc871d179ba476082efe543dc1b38db46e30 E:\December\LockApp\appcompat_v7\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-hdpi/rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-hdpi/rec.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/mic_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-xxhdpi/mic_pressed.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/slidearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/res/crunch/drawable-xxhdpi/slidearrow.png -------------------------------------------------------------------------------- /Audio/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/bin/resources.ap_ -------------------------------------------------------------------------------- /Audio/gen/com/example/audio/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.audio; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Audio/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/ic_launcher-web.png -------------------------------------------------------------------------------- /Audio/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Audio/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 | -------------------------------------------------------------------------------- /Audio/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-21 15 | android.library.reference.1=../appcompat_v7 16 | -------------------------------------------------------------------------------- /Audio/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-hdpi/mic_button_states.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Audio/res/drawable-hdpi/rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-hdpi/rec.png -------------------------------------------------------------------------------- /Audio/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/mic_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-xxhdpi/mic_pressed.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/slidearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/Audio/res/drawable-xxhdpi/slidearrow.png -------------------------------------------------------------------------------- /Audio/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Audio/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Audio/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Audio/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /Audio/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Audio/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /appcompat_v7/.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_v7/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /appcompat_v7/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/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_v7/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/bin/appcompat_v7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/appcompat_v7.jar -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/BuildConfig.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /appcompat_v7/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/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_v7/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/libs/android-support-v4.jar -------------------------------------------------------------------------------- /appcompat_v7/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /appcompat_v7/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-21 15 | android.library=true 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_disable_only_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_disable_only_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_secondary_text_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_secondary_text_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/bdee8bd15ea605cd9a70de422fa0c5634be5ab23/appcompat_v7/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_btn_check_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_cab_background_internal_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_switch_thumb_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_bar_up_container.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 23 | 24 | -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 25 | -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 23 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 32dp 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/themes_base.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 |