├── MapNav ├── .DS_Store ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── MapNav.apk │ ├── R.txt │ ├── classes.dex │ ├── dexedLibs │ │ ├── android-support-v4-f63514ec0a94862f82da1f6cc53311fe.jar │ │ ├── android-support-v7-appcompat-bcd39f8f950b2063f1952de37141169a.jar │ │ └── appcompat_v7-c45c0918b52f5e31a9a83e2afd075887.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_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 │ └── mapnav │ ├── InterceptPoint.java │ ├── LabeledPoint.java │ ├── LineGraphView.java │ ├── LineSegment.java │ ├── MainActivity.java │ ├── MapLoader.java │ ├── MapView.java │ ├── NavigationalMap.java │ ├── PositionListener.java │ └── VectorUtils.java ├── README.md └── appcompat_v7 ├── .DS_Store ├── .classpath ├── .project ├── AndroidManifest.xml ├── README.txt ├── bin ├── AndroidManifest.xml ├── R.txt ├── appcompat_v7.jar ├── classes │ └── .readme └── res │ └── crunch │ ├── drawable-hdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-ldrtl-hdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-mdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xhdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxhdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxxhdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-mdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xhdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xxhdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png │ └── drawable-xxxhdpi │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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 ├── libs ├── android-support-v4.jar └── android-support-v7-appcompat.jar ├── project.properties ├── res ├── anim │ ├── abc_fade_in.xml │ ├── abc_fade_out.xml │ ├── abc_grow_fade_in_from_bottom.xml │ ├── abc_popup_enter.xml │ ├── abc_popup_exit.xml │ ├── abc_shrink_fade_out_from_bottom.xml │ ├── abc_slide_in_bottom.xml │ ├── abc_slide_in_top.xml │ ├── abc_slide_out_bottom.xml │ └── abc_slide_out_top.xml ├── color-v11 │ ├── abc_background_cache_hint_selector_material_dark.xml │ └── abc_background_cache_hint_selector_material_light.xml ├── color │ ├── abc_background_cache_hint_selector_material_dark.xml │ ├── abc_background_cache_hint_selector_material_light.xml │ ├── abc_primary_text_disable_only_material_dark.xml │ ├── abc_primary_text_disable_only_material_light.xml │ ├── abc_primary_text_material_dark.xml │ ├── abc_primary_text_material_light.xml │ ├── abc_search_url_text.xml │ ├── abc_secondary_text_material_dark.xml │ ├── abc_secondary_text_material_light.xml │ ├── switch_thumb_material_dark.xml │ └── switch_thumb_material_light.xml ├── drawable-hdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png ├── drawable-ldrtl-hdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png ├── drawable-ldrtl-mdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png ├── drawable-ldrtl-xhdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png ├── drawable-ldrtl-xxhdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png ├── drawable-ldrtl-xxxhdpi │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ └── abc_spinner_mtrl_am_alpha.9.png ├── drawable-mdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png ├── drawable-xhdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png ├── drawable-xxhdpi │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_cab_background_top_mtrl_alpha.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ ├── abc_ic_go_search_api_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_text_cursor_mtrl_alpha.9.png │ ├── abc_textfield_activated_mtrl_alpha.9.png │ ├── abc_textfield_default_mtrl_alpha.9.png │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ └── abc_textfield_search_default_mtrl_alpha.9.png ├── drawable-xxxhdpi │ ├── abc_btn_check_to_on_mtrl_000.png │ ├── abc_btn_check_to_on_mtrl_015.png │ ├── abc_btn_radio_to_on_mtrl_000.png │ ├── abc_btn_radio_to_on_mtrl_015.png │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ ├── abc_ic_clear_mtrl_alpha.png │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ ├── abc_ic_menu_cut_mtrl_alpha.png │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ ├── abc_ic_menu_share_mtrl_alpha.png │ ├── abc_ic_search_api_mtrl_alpha.png │ ├── abc_ic_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_borderless_material.xml │ ├── abc_btn_check_material.xml │ ├── abc_btn_default_mtrl_shape.xml │ ├── abc_btn_radio_material.xml │ ├── abc_cab_background_internal_bg.xml │ ├── abc_cab_background_top_material.xml │ ├── abc_dialog_material_background_dark.xml │ ├── abc_dialog_material_background_light.xml │ ├── abc_edit_text_material.xml │ ├── abc_item_background_holo_dark.xml │ ├── abc_item_background_holo_light.xml │ ├── abc_list_selector_background_transition_holo_dark.xml │ ├── abc_list_selector_background_transition_holo_light.xml │ ├── abc_list_selector_holo_dark.xml │ ├── abc_list_selector_holo_light.xml │ ├── abc_ratingbar_full_material.xml │ ├── abc_spinner_textfield_background_material.xml │ ├── abc_switch_thumb_material.xml │ ├── abc_tab_indicator_material.xml │ └── abc_textfield_search_material.xml ├── layout │ ├── abc_action_bar_title_item.xml │ ├── abc_action_bar_up_container.xml │ ├── abc_action_bar_view_list_nav_layout.xml │ ├── abc_action_menu_item_layout.xml │ ├── abc_action_menu_layout.xml │ ├── abc_action_mode_bar.xml │ ├── abc_action_mode_close_item_material.xml │ ├── abc_activity_chooser_view.xml │ ├── abc_activity_chooser_view_list_item.xml │ ├── abc_alert_dialog_material.xml │ ├── abc_dialog_title_material.xml │ ├── abc_expanded_menu_layout.xml │ ├── abc_list_menu_item_checkbox.xml │ ├── abc_list_menu_item_icon.xml │ ├── abc_list_menu_item_layout.xml │ ├── abc_list_menu_item_radio.xml │ ├── abc_popup_menu_item_layout.xml │ ├── abc_screen_content_include.xml │ ├── abc_screen_simple.xml │ ├── abc_screen_simple_overlay_action_mode.xml │ ├── abc_screen_toolbar.xml │ ├── abc_search_dropdown_item_icons_2line.xml │ ├── abc_search_view.xml │ ├── abc_select_dialog_material.xml │ ├── abc_simple_dropdown_hint.xml │ ├── notification_media_action.xml │ ├── notification_media_cancel_action.xml │ ├── notification_template_big_media.xml │ ├── notification_template_big_media_narrow.xml │ ├── notification_template_lines.xml │ ├── notification_template_media.xml │ ├── notification_template_part_chronometer.xml │ ├── notification_template_part_time.xml │ ├── select_dialog_item_material.xml │ ├── select_dialog_multichoice_material.xml │ ├── select_dialog_singlechoice_material.xml │ └── support_simple_spinner_dropdown_item.xml ├── values-af │ └── strings.xml ├── values-am │ └── strings.xml ├── values-ar │ └── strings.xml ├── values-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-h720dp │ └── dimens.xml ├── values-hdpi │ └── styles_base.xml ├── values-hi │ └── strings.xml ├── values-hr │ └── strings.xml ├── values-hu │ └── strings.xml ├── values-hy-rAM │ └── strings.xml ├── values-in │ └── strings.xml ├── values-is-rIS │ └── strings.xml ├── values-it │ └── strings.xml ├── values-iw │ └── strings.xml ├── values-ja │ └── strings.xml ├── values-ka-rGE │ └── strings.xml ├── values-kk-rKZ │ └── strings.xml ├── values-km-rKH │ └── strings.xml ├── values-kn-rIN │ └── strings.xml ├── values-ko │ └── strings.xml ├── values-ky-rKG │ └── strings.xml ├── values-land │ ├── bools.xml │ ├── config.xml │ ├── dimens.xml │ └── dimens_material.xml ├── values-large │ ├── bools.xml │ ├── config.xml │ ├── dimens.xml │ └── themes_base.xml ├── values-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-v12 │ └── styles_base.xml ├── values-v14 │ ├── styles.xml │ ├── styles_base_text.xml │ └── themes_base.xml ├── values-v17 │ └── styles_rtl.xml ├── values-v18 │ └── dimens.xml ├── values-v21 │ ├── styles_base.xml │ ├── styles_base_text.xml │ └── themes_base.xml ├── values-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 /MapNav/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/.DS_Store -------------------------------------------------------------------------------- /MapNav/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MapNav/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MapNav 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /MapNav/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /MapNav/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /MapNav/bin/MapNav.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/MapNav.apk -------------------------------------------------------------------------------- /MapNav/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/classes.dex -------------------------------------------------------------------------------- /MapNav/bin/dexedLibs/android-support-v4-f63514ec0a94862f82da1f6cc53311fe.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/dexedLibs/android-support-v4-f63514ec0a94862f82da1f6cc53311fe.jar -------------------------------------------------------------------------------- /MapNav/bin/dexedLibs/android-support-v7-appcompat-bcd39f8f950b2063f1952de37141169a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/dexedLibs/android-support-v7-appcompat-bcd39f8f950b2063f1952de37141169a.jar -------------------------------------------------------------------------------- /MapNav/bin/dexedLibs/appcompat_v7-c45c0918b52f5e31a9a83e2afd075887.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/dexedLibs/appcompat_v7-c45c0918b52f5e31a9a83e2afd075887.jar -------------------------------------------------------------------------------- /MapNav/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1436839846000 1184450 e19387dc3b060af32f5401f84fbe246635256955 /Users/Chris/Desktop/Java_WorkSpace/appcompat_v7/libs/android-support-v4.jar 5 | 1437010760000 1184450 e19387dc3b060af32f5401f84fbe246635256955 /Users/Chris/Desktop/Java_WorkSpace/MapNav/libs/android-support-v4.jar 6 | -------------------------------------------------------------------------------- /MapNav/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/bin/resources.ap_ -------------------------------------------------------------------------------- /MapNav/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/ic_launcher-web.png -------------------------------------------------------------------------------- /MapNav/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/libs/android-support-v4.jar -------------------------------------------------------------------------------- /MapNav/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /MapNav/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-22 15 | android.library.reference.1=../appcompat_v7 16 | -------------------------------------------------------------------------------- /MapNav/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/MapNav/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MapNav/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MapNav/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 13 | 14 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /MapNav/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /MapNav/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /MapNav/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /MapNav/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /MapNav/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /MapNav/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MapNav 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /MapNav/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # InteriorMapNavigation 2 | An indoor Map Navigation mobile App, built with Java, XML, Google Android Sensor API 3 | 4 | 5 | - Track User's position based on a model of the physical world
6 | Model uses SVG (Scalable Vector Graphics) file, which is for storing vector-based graphics as XML.
7 | Also you can create your own model: http://inkscape.org/download
8 | - Implement a path-finding algorithm which can guide a user to a destination.
9 | 10 | -------------------------------------------------------------------------------- /appcompat_v7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/.DS_Store -------------------------------------------------------------------------------- /appcompat_v7/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /appcompat_v7/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | android-support-v7-appcompat 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /appcompat_v7/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/README.txt: -------------------------------------------------------------------------------- 1 | Library Project including compatibility ActionBar. 2 | 3 | This can be used by an Android project to provide 4 | access to ActionBar on applications running on API 7+. 5 | 6 | There is technically no source, but the src folder is necessary 7 | to ensure that the build system works. The content is actually 8 | located in libs/android-support-v7-appcompat.jar. 9 | The accompanying resources must also be included in the application. 10 | 11 | -------------------------------------------------------------------------------- /appcompat_v7/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/bin/appcompat_v7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/appcompat_v7.jar -------------------------------------------------------------------------------- /appcompat_v7/bin/classes/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/libs/android-support-v4.jar -------------------------------------------------------------------------------- /appcompat_v7/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /appcompat_v7/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-22 15 | android.library=true 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat_v7/res/color-v11/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color-v11/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_disable_only_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_disable_only_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_primary_text_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_secondary_text_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/abc_secondary_text_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/switch_thumb_material_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/color/switch_thumb_material_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/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/ChrisXin/MapNav/16618c345ccb2448027bdb4b96ac181f14b0d266/appcompat_v7/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_btn_borderless_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_btn_check_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_cab_background_internal_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_switch_thumb_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_bar_up_container.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 23 | 24 | -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 26 | -------------------------------------------------------------------------------- /appcompat_v7/res/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 22 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-h720dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 54dip 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-hdpi/styles_base.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 32dp 20 | 21 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | 20 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-large/themes_base.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-v18/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 0px 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-w360dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 21 | 3 22 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-w480dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-w480dp/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-w500dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 21 | 4 22 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-w720dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-xlarge-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 256dip 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat_v7/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | -------------------------------------------------------------------------------- /appcompat_v7/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | true 20 | false 21 | true 22 | 23 | false 24 | 25 | -------------------------------------------------------------------------------- /appcompat_v7/src/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. --------------------------------------------------------------------------------