├── README.md ├── SimulateGps ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ ├── BaiduLBS_Android.jar │ └── armeabi │ │ ├── libBaiduMapSDK_v3_2_0_15.so │ │ └── liblocSDK5.so ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── icon_gcoding.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_main.xml │ │ └── dialog_customprogress.xml │ ├── menu │ │ └── menu_main.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── aslan │ └── simulategps │ ├── AppApplication.java │ ├── activity │ ├── AboutActivity.java │ └── MainActivity.java │ ├── base │ ├── BaseActivity.java │ └── BaseDialog.java │ └── dialog │ └── CustomProgressDialog.java └── appcompat ├── .classpath ├── .project ├── AndroidManifest.xml ├── README.txt ├── 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 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/README.md -------------------------------------------------------------------------------- /SimulateGps/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/.classpath -------------------------------------------------------------------------------- /SimulateGps/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/.project -------------------------------------------------------------------------------- /SimulateGps/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /SimulateGps/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/AndroidManifest.xml -------------------------------------------------------------------------------- /SimulateGps/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/ic_launcher-web.png -------------------------------------------------------------------------------- /SimulateGps/libs/BaiduLBS_Android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/libs/BaiduLBS_Android.jar -------------------------------------------------------------------------------- /SimulateGps/libs/armeabi/libBaiduMapSDK_v3_2_0_15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/libs/armeabi/libBaiduMapSDK_v3_2_0_15.so -------------------------------------------------------------------------------- /SimulateGps/libs/armeabi/liblocSDK5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/libs/armeabi/liblocSDK5.so -------------------------------------------------------------------------------- /SimulateGps/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/lint.xml -------------------------------------------------------------------------------- /SimulateGps/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/proguard-project.txt -------------------------------------------------------------------------------- /SimulateGps/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/project.properties -------------------------------------------------------------------------------- /SimulateGps/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimulateGps/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimulateGps/res/drawable-mdpi/icon_gcoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/drawable-mdpi/icon_gcoding.png -------------------------------------------------------------------------------- /SimulateGps/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimulateGps/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimulateGps/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/layout/activity_about.xml -------------------------------------------------------------------------------- /SimulateGps/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SimulateGps/res/layout/dialog_customprogress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/layout/dialog_customprogress.xml -------------------------------------------------------------------------------- /SimulateGps/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/menu/menu_main.xml -------------------------------------------------------------------------------- /SimulateGps/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/values/dimens.xml -------------------------------------------------------------------------------- /SimulateGps/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/values/strings.xml -------------------------------------------------------------------------------- /SimulateGps/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/res/values/styles.xml -------------------------------------------------------------------------------- /SimulateGps/src/com/aslan/simulategps/AppApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/src/com/aslan/simulategps/AppApplication.java -------------------------------------------------------------------------------- /SimulateGps/src/com/aslan/simulategps/activity/AboutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/src/com/aslan/simulategps/activity/AboutActivity.java -------------------------------------------------------------------------------- /SimulateGps/src/com/aslan/simulategps/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/src/com/aslan/simulategps/activity/MainActivity.java -------------------------------------------------------------------------------- /SimulateGps/src/com/aslan/simulategps/base/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/src/com/aslan/simulategps/base/BaseActivity.java -------------------------------------------------------------------------------- /SimulateGps/src/com/aslan/simulategps/base/BaseDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/src/com/aslan/simulategps/base/BaseDialog.java -------------------------------------------------------------------------------- /SimulateGps/src/com/aslan/simulategps/dialog/CustomProgressDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/SimulateGps/src/com/aslan/simulategps/dialog/CustomProgressDialog.java -------------------------------------------------------------------------------- /appcompat/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/.classpath -------------------------------------------------------------------------------- /appcompat/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/.project -------------------------------------------------------------------------------- /appcompat/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/AndroidManifest.xml -------------------------------------------------------------------------------- /appcompat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/README.txt -------------------------------------------------------------------------------- /appcompat/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/libs/android-support-v4.jar -------------------------------------------------------------------------------- /appcompat/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /appcompat/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/project.properties -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_grow_fade_in_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_background_cache_hint_selector_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_disable_only_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_disable_only_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_primary_text_disable_only_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_primary_text_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_primary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_primary_text_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_secondary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_secondary_text_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/abc_secondary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/abc_secondary_text_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/color/switch_thumb_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/switch_thumb_material_dark.xml -------------------------------------------------------------------------------- /appcompat/res/color/switch_thumb_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/color/switch_thumb_material_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_borderless_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_btn_borderless_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_check_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_btn_check_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_default_mtrl_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_btn_radio_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_cab_background_internal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_cab_background_internal_bg.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_cab_background_top_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_dialog_material_background_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_dialog_material_background_dark.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_dialog_material_background_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_dialog_material_background_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_edit_text_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_item_background_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_item_background_holo_dark.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_item_background_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_item_background_holo_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_list_selector_holo_dark.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_list_selector_holo_light.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_ratingbar_full_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_ratingbar_full_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_spinner_textfield_background_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_spinner_textfield_background_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_switch_thumb_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_switch_thumb_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_tab_indicator_material.xml -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_textfield_search_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/drawable/abc_textfield_search_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_title_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_action_bar_title_item.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_up_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_action_bar_up_container.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_action_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_action_menu_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_action_mode_bar.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_mode_close_item_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_action_mode_close_item_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_activity_chooser_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_activity_chooser_view.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_activity_chooser_view_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_activity_chooser_view_list_item.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_alert_dialog_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_alert_dialog_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_dialog_title_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_dialog_title_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_expanded_menu_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_list_menu_item_checkbox.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_list_menu_item_icon.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_list_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_list_menu_item_radio.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_popup_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_popup_menu_item_layout.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_screen_content_include.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_search_view.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_select_dialog_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_select_dialog_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/abc_simple_dropdown_hint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/abc_simple_dropdown_hint.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_media_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_media_action.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_media_cancel_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_media_cancel_action.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_template_big_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_template_big_media.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_template_big_media_narrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_template_big_media_narrow.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_template_lines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_template_lines.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_template_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_template_media.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_template_part_chronometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_template_part_chronometer.xml -------------------------------------------------------------------------------- /appcompat/res/layout/notification_template_part_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/notification_template_part_time.xml -------------------------------------------------------------------------------- /appcompat/res/layout/select_dialog_item_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/select_dialog_item_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/select_dialog_multichoice_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/select_dialog_multichoice_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/select_dialog_singlechoice_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/select_dialog_singlechoice_material.xml -------------------------------------------------------------------------------- /appcompat/res/layout/support_simple_spinner_dropdown_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/layout/support_simple_spinner_dropdown_item.xml -------------------------------------------------------------------------------- /appcompat/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-af/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-am/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ar/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-bg/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ca/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-cs/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-da/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-de/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-el/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-es/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-et-rEE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-et-rEE/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-eu-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-eu-rES/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-fa/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-fi/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-fr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-h720dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-h720dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-hdpi/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-hdpi/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-hi/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-hr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-hu/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-hy-rAM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-hy-rAM/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-in/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-is-rIS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-is-rIS/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-it/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-iw/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ja/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ka-rGE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ka-rGE/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-kk-rKZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-kk-rKZ/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-km-rKH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-km-rKH/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-kn-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-kn-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ko/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ky-rKG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ky-rKG/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-land/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-land/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-land/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-land/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-land/dimens_material.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-large/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-large/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-large/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-large/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-large/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-lo-rLA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-lo-rLA/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-lt/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-lv/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-mk-rMK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-mk-rMK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ml-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ml-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-mn-rMN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-mn-rMN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-mr-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-mr-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ms-rMY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ms-rMY/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-my-rMM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-my-rMM/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-nb/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ne-rNP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ne-rNP/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-nl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-pl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-port/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-port/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-pt/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ro/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ru/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-si-rLK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-si-rLK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-sk/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-sl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-sr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-sv/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-sw/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-sw600dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-sw600dp/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-te-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-te-rIN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-th/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-tl/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-tr/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-uk/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-ur-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-ur-rPK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-uz-rUZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-uz-rUZ/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-v11/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v11/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v11/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v11/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat/res/values-v11/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v11/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v12/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v12/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v14/styles.xml -------------------------------------------------------------------------------- /appcompat/res/values-v14/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v14/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat/res/values-v14/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v14/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v17/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v17/styles_rtl.xml -------------------------------------------------------------------------------- /appcompat/res/values-v18/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v18/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-v21/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v21/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-v21/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v21/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat/res/values-v21/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-v21/themes_base.xml -------------------------------------------------------------------------------- /appcompat/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-vi/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-w360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-w360dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-w480dp/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-w480dp/config.xml -------------------------------------------------------------------------------- /appcompat/res/values-w500dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-w500dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-w600dp/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-w720dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-w720dp/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-xlarge-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-xlarge-land/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-xlarge/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values-zu/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/attrs.xml -------------------------------------------------------------------------------- /appcompat/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/bools.xml -------------------------------------------------------------------------------- /appcompat/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/colors.xml -------------------------------------------------------------------------------- /appcompat/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/colors_material.xml -------------------------------------------------------------------------------- /appcompat/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/config.xml -------------------------------------------------------------------------------- /appcompat/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/dimens.xml -------------------------------------------------------------------------------- /appcompat/res/values/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/dimens_material.xml -------------------------------------------------------------------------------- /appcompat/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/ids.xml -------------------------------------------------------------------------------- /appcompat/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/strings.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/styles.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/styles_base.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/styles_base_text.xml -------------------------------------------------------------------------------- /appcompat/res/values/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/styles_rtl.xml -------------------------------------------------------------------------------- /appcompat/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/themes.xml -------------------------------------------------------------------------------- /appcompat/res/values/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/res/values/themes_base.xml -------------------------------------------------------------------------------- /appcompat/src/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aslanchen/SimulateGps/HEAD/appcompat/src/.readme --------------------------------------------------------------------------------