├── 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/.classpath -------------------------------------------------------------------------------- /Audio/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/.project -------------------------------------------------------------------------------- /Audio/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/AndroidManifest.xml -------------------------------------------------------------------------------- /Audio/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /Audio/bin/Audio.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/Audio.apk -------------------------------------------------------------------------------- /Audio/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/R.txt -------------------------------------------------------------------------------- /Audio/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes.dex -------------------------------------------------------------------------------- /Audio/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Audio/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/BuildConfig.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/FrameLayoutFixed.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/FrameLayoutFixed.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/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/HEAD/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/HEAD/Audio/bin/classes/com/example/audio/MainActivity$MyTimerTask.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/MainActivity.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$anim.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$attr.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$bool.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$color.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$dimen.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$drawable.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$id.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$integer.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$layout.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$menu.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$string.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$style.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R$styleable.class -------------------------------------------------------------------------------- /Audio/bin/classes/com/example/audio/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/com/example/audio/R.class -------------------------------------------------------------------------------- /Audio/bin/classes/ui/Animation/View10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/ui/Animation/View10.class -------------------------------------------------------------------------------- /Audio/bin/classes/ui/ViewProxy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/classes/ui/ViewProxy.class -------------------------------------------------------------------------------- /Audio/bin/dexedLibs/android-support-v4-0fdc59e43dbe9a769ed7136190b8ba9d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/dexedLibs/android-support-v4-0fdc59e43dbe9a769ed7136190b8ba9d.jar -------------------------------------------------------------------------------- /Audio/bin/dexedLibs/android-support-v7-appcompat-3194ecbc242f9187dab0b2b79d9f06e9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/dexedLibs/android-support-v7-appcompat-3194ecbc242f9187dab0b2b79d9f06e9.jar -------------------------------------------------------------------------------- /Audio/bin/dexedLibs/appcompat_v7-66b8b3fed50cd5a5267069918dc6e4b7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/dexedLibs/appcompat_v7-66b8b3fed50cd5a5267069918dc6e4b7.jar -------------------------------------------------------------------------------- /Audio/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/jarlist.cache -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-hdpi/rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-hdpi/rec.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/mic_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-xxhdpi/mic_pressed.png -------------------------------------------------------------------------------- /Audio/bin/res/crunch/drawable-xxhdpi/slidearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/res/crunch/drawable-xxhdpi/slidearrow.png -------------------------------------------------------------------------------- /Audio/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/bin/resources.ap_ -------------------------------------------------------------------------------- /Audio/gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/gen/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /Audio/gen/com/example/audio/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/gen/com/example/audio/BuildConfig.java -------------------------------------------------------------------------------- /Audio/gen/com/example/audio/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/gen/com/example/audio/R.java -------------------------------------------------------------------------------- /Audio/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/ic_launcher-web.png -------------------------------------------------------------------------------- /Audio/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Audio/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/proguard-project.txt -------------------------------------------------------------------------------- /Audio/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/project.properties -------------------------------------------------------------------------------- /Audio/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-hdpi/mic_button_states.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-hdpi/mic_button_states.xml -------------------------------------------------------------------------------- /Audio/res/drawable-hdpi/rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-hdpi/rec.png -------------------------------------------------------------------------------- /Audio/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/mic_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-xxhdpi/mic_pressed.png -------------------------------------------------------------------------------- /Audio/res/drawable-xxhdpi/slidearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/drawable-xxhdpi/slidearrow.png -------------------------------------------------------------------------------- /Audio/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Audio/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/menu/main.xml -------------------------------------------------------------------------------- /Audio/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/values-v11/styles.xml -------------------------------------------------------------------------------- /Audio/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/values-v14/styles.xml -------------------------------------------------------------------------------- /Audio/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Audio/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/values/dimens.xml -------------------------------------------------------------------------------- /Audio/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/values/strings.xml -------------------------------------------------------------------------------- /Audio/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/res/values/styles.xml -------------------------------------------------------------------------------- /Audio/src/com/example/audio/FrameLayoutFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/src/com/example/audio/FrameLayoutFixed.java -------------------------------------------------------------------------------- /Audio/src/com/example/audio/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/src/com/example/audio/MainActivity.java -------------------------------------------------------------------------------- /Audio/src/ui/Animation/View10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/src/ui/Animation/View10.java -------------------------------------------------------------------------------- /Audio/src/ui/ViewProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/Audio/src/ui/ViewProxy.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/README.md -------------------------------------------------------------------------------- /appcompat_v7/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/.classpath -------------------------------------------------------------------------------- /appcompat_v7/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/.project -------------------------------------------------------------------------------- /appcompat_v7/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /appcompat_v7/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/AndroidManifest.xml -------------------------------------------------------------------------------- /appcompat_v7/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/README.txt -------------------------------------------------------------------------------- /appcompat_v7/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /appcompat_v7/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/bin/R.txt -------------------------------------------------------------------------------- /appcompat_v7/bin/appcompat_v7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/bin/appcompat_v7.jar -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/bin/classes/.readme -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/android/support/v7/appcompat/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/appcompat_v7/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /appcompat_v7/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/bin/jarlist.cache -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/gen/android/support/v7/appcompat/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/gen/android/support/v7/appcompat/BuildConfig.java -------------------------------------------------------------------------------- /appcompat_v7/gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/gen/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /appcompat_v7/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/libs/android-support-v4.jar -------------------------------------------------------------------------------- /appcompat_v7/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /appcompat_v7/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/project.properties -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_background_cache_hint_selector_material_dark.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_background_cache_hint_selector_material_light.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_disable_only_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_primary_text_disable_only_material_dark.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_disable_only_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_primary_text_disable_only_material_light.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_primary_text_material_dark.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_primary_text_material_light.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_secondary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_secondary_text_material_dark.xml -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_secondary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/color/abc_secondary_text_material_light.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/appcompat_v7/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_btn_check_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_btn_check_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_btn_radio_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_cab_background_internal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_cab_background_internal_bg.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_cab_background_top_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_edit_text_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_item_background_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_item_background_holo_dark.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_item_background_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_item_background_holo_light.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_dark.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_light.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_list_selector_holo_dark.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_list_selector_holo_light.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_switch_thumb_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_switch_thumb_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_tab_indicator_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_textfield_search_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/drawable/abc_textfield_search_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout-v11/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout-v11/abc_screen_content_include.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_bar_title_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_action_bar_title_item.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_bar_up_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_action_bar_up_container.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_bar_view_list_nav_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_action_bar_view_list_nav_layout.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_action_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_action_menu_layout.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_action_mode_bar.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_mode_close_item_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_action_mode_close_item_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_activity_chooser_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_activity_chooser_view.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_activity_chooser_view_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_activity_chooser_view_include.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_activity_chooser_view_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_activity_chooser_view_list_item.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_expanded_menu_layout.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_list_menu_item_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_list_menu_item_checkbox.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_list_menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_list_menu_item_icon.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_list_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_list_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_list_menu_item_radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_list_menu_item_radio.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_popup_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_popup_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_screen_content_include.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_screen_simple_overlay_action_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_screen_simple_overlay_action_mode.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_search_dropdown_item_icons_2line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_search_dropdown_item_icons_2line.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_search_view.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_simple_dropdown_hint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/abc_simple_dropdown_hint.xml -------------------------------------------------------------------------------- /appcompat_v7/res/layout/support_simple_spinner_dropdown_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/layout/support_simple_spinner_dropdown_item.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-af/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-am/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ar/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-bg/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ca/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-cs/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-da/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-de/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-el/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-es/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-et-rEE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-et-rEE/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-eu-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-eu-rES/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-fa/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-fi/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-fr/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-hi/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-hr/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-hu/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-hy-rAM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-hy-rAM/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-in/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-is-rIS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-is-rIS/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-it/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-iw/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ja/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ka-rGE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ka-rGE/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-kk-rKZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-kk-rKZ/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-km-rKH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-km-rKH/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-kn-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-kn-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ko/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ky-rKG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ky-rKG/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-land/bools.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-land/config.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-land/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-land/dimens_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-large/bools.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-large/config.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-large/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-large/themes_base.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-lo-rLA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-lo-rLA/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-lt/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-lv/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-mk-rMK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-mk-rMK/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ml-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ml-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-mn-rMN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-mn-rMN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-mr-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-mr-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ms-rMY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ms-rMY/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-my-rMM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-my-rMM/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-nb/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ne-rNP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ne-rNP/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-nl/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-pl/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-port/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-port/bools.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-pt/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ro/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ru/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-si-rLK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-si-rLK/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-sk/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-sl/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-sr/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-sv/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-sw/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-sw600dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-sw600dp/config.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-te-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-te-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-th/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-tl/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-tr/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-uk/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-ur-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-ur-rPK/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-uz-rUZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-uz-rUZ/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v11/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v11/styles_base.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v11/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v11/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v11/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v11/themes_base.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v14/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v14/themes_base.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v17/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v17/styles_rtl.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v21/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v21/styles_base.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v21/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v21/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-v21/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-v21/themes_base.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-vi/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-w360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-w360dp/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-w480dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-w480dp/bools.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-w480dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-w480dp/config.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-w500dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-w500dp/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-w600dp/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-w720dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-w720dp/bools.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-xlarge-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-xlarge-land/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-xlarge/bools.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values-zu/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/attrs.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/bools.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/colors.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/colors_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/config.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/dimens.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/dimens_material.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/ids.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/strings.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/styles.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/styles_base.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/styles_rtl.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/themes.xml -------------------------------------------------------------------------------- /appcompat_v7/res/values/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/res/values/themes_base.xml -------------------------------------------------------------------------------- /appcompat_v7/src/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarathnk/Audio/HEAD/appcompat_v7/src/.readme --------------------------------------------------------------------------------