├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── AirPlaneModeSwitcher.iml ├── README.md ├── appcompat ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.txt ├── libs │ ├── android-support-v4.jar │ └── android-support-v7-appcompat.jar ├── lint.xml ├── project.properties ├── res │ ├── anim │ │ ├── abc_fade_in.xml │ │ ├── abc_fade_out.xml │ │ ├── abc_slide_in_bottom.xml │ │ ├── abc_slide_in_top.xml │ │ ├── abc_slide_out_bottom.xml │ │ └── abc_slide_out_top.xml │ ├── color │ │ └── abc_search_url_text_holo.xml │ ├── drawable-hdpi │ │ ├── abc_ab_bottom_solid_dark_holo.9.png │ │ ├── abc_ab_bottom_solid_light_holo.9.png │ │ ├── abc_ab_bottom_transparent_dark_holo.9.png │ │ ├── abc_ab_bottom_transparent_light_holo.9.png │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_ab_solid_dark_holo.9.png │ │ ├── abc_ab_solid_light_holo.9.png │ │ ├── abc_ab_stacked_solid_dark_holo.9.png │ │ ├── abc_ab_stacked_solid_light_holo.9.png │ │ ├── abc_ab_stacked_transparent_dark_holo.9.png │ │ ├── abc_ab_stacked_transparent_light_holo.9.png │ │ ├── abc_ab_transparent_dark_holo.9.png │ │ ├── abc_ab_transparent_light_holo.9.png │ │ ├── abc_cab_background_bottom_holo_dark.9.png │ │ ├── abc_cab_background_bottom_holo_light.9.png │ │ ├── abc_cab_background_top_holo_dark.9.png │ │ ├── abc_cab_background_top_holo_light.9.png │ │ ├── abc_ic_ab_back_holo_dark.png │ │ ├── abc_ic_ab_back_holo_light.png │ │ ├── abc_ic_cab_done_holo_dark.png │ │ ├── abc_ic_cab_done_holo_light.png │ │ ├── abc_ic_clear_disabled.png │ │ ├── abc_ic_clear_normal.png │ │ ├── abc_ic_clear_search_api_disabled_holo_light.png │ │ ├── abc_ic_clear_search_api_holo_light.png │ │ ├── abc_ic_commit_search_api_holo_dark.png │ │ ├── abc_ic_commit_search_api_holo_light.png │ │ ├── abc_ic_go.png │ │ ├── abc_ic_go_search_api_holo_light.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_light.png │ │ ├── abc_ic_menu_share_holo_dark.png │ │ ├── abc_ic_menu_share_holo_light.png │ │ ├── abc_ic_search.png │ │ ├── abc_ic_search_api_holo_light.png │ │ ├── abc_ic_voice_search.png │ │ ├── abc_ic_voice_search_api_holo_light.png │ │ ├── abc_list_divider_holo_dark.9.png │ │ ├── abc_list_divider_holo_light.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_dropdown_panel_holo_dark.9.png │ │ ├── abc_menu_dropdown_panel_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_holo_dark.9.png │ │ ├── abc_menu_hardkey_panel_holo_light.9.png │ │ ├── abc_spinner_ab_default_holo_dark.9.png │ │ ├── abc_spinner_ab_default_holo_light.9.png │ │ ├── abc_spinner_ab_disabled_holo_dark.9.png │ │ ├── abc_spinner_ab_disabled_holo_light.9.png │ │ ├── abc_spinner_ab_focused_holo_dark.9.png │ │ ├── abc_spinner_ab_focused_holo_light.9.png │ │ ├── abc_spinner_ab_pressed_holo_dark.9.png │ │ ├── abc_spinner_ab_pressed_holo_light.9.png │ │ ├── abc_tab_selected_focused_holo.9.png │ │ ├── abc_tab_selected_holo.9.png │ │ ├── abc_tab_selected_pressed_holo.9.png │ │ ├── abc_tab_unselected_pressed_holo.9.png │ │ ├── abc_textfield_search_default_holo_dark.9.png │ │ ├── abc_textfield_search_default_holo_light.9.png │ │ ├── abc_textfield_search_right_default_holo_dark.9.png │ │ ├── abc_textfield_search_right_default_holo_light.9.png │ │ ├── abc_textfield_search_right_selected_holo_dark.9.png │ │ ├── abc_textfield_search_right_selected_holo_light.9.png │ │ ├── abc_textfield_search_selected_holo_dark.9.png │ │ └── abc_textfield_search_selected_holo_light.9.png │ ├── drawable-mdpi │ │ ├── abc_ab_bottom_solid_dark_holo.9.png │ │ ├── abc_ab_bottom_solid_light_holo.9.png │ │ ├── abc_ab_bottom_transparent_dark_holo.9.png │ │ ├── abc_ab_bottom_transparent_light_holo.9.png │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_ab_solid_dark_holo.9.png │ │ ├── abc_ab_solid_light_holo.9.png │ │ ├── abc_ab_stacked_solid_dark_holo.9.png │ │ ├── abc_ab_stacked_solid_light_holo.9.png │ │ ├── abc_ab_stacked_transparent_dark_holo.9.png │ │ ├── abc_ab_stacked_transparent_light_holo.9.png │ │ ├── abc_ab_transparent_dark_holo.9.png │ │ ├── abc_ab_transparent_light_holo.9.png │ │ ├── abc_cab_background_bottom_holo_dark.9.png │ │ ├── abc_cab_background_bottom_holo_light.9.png │ │ ├── abc_cab_background_top_holo_dark.9.png │ │ ├── abc_cab_background_top_holo_light.9.png │ │ ├── abc_ic_ab_back_holo_dark.png │ │ ├── abc_ic_ab_back_holo_light.png │ │ ├── abc_ic_cab_done_holo_dark.png │ │ ├── abc_ic_cab_done_holo_light.png │ │ ├── abc_ic_clear_disabled.png │ │ ├── abc_ic_clear_normal.png │ │ ├── abc_ic_clear_search_api_disabled_holo_light.png │ │ ├── abc_ic_clear_search_api_holo_light.png │ │ ├── abc_ic_commit_search_api_holo_dark.png │ │ ├── abc_ic_commit_search_api_holo_light.png │ │ ├── abc_ic_go.png │ │ ├── abc_ic_go_search_api_holo_light.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_light.png │ │ ├── abc_ic_menu_share_holo_dark.png │ │ ├── abc_ic_menu_share_holo_light.png │ │ ├── abc_ic_search.png │ │ ├── abc_ic_search_api_holo_light.png │ │ ├── abc_ic_voice_search.png │ │ ├── abc_ic_voice_search_api_holo_light.png │ │ ├── abc_list_divider_holo_dark.9.png │ │ ├── abc_list_divider_holo_light.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_dropdown_panel_holo_dark.9.png │ │ ├── abc_menu_dropdown_panel_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_holo_dark.9.png │ │ ├── abc_menu_hardkey_panel_holo_light.9.png │ │ ├── abc_spinner_ab_default_holo_dark.9.png │ │ ├── abc_spinner_ab_default_holo_light.9.png │ │ ├── abc_spinner_ab_disabled_holo_dark.9.png │ │ ├── abc_spinner_ab_disabled_holo_light.9.png │ │ ├── abc_spinner_ab_focused_holo_dark.9.png │ │ ├── abc_spinner_ab_focused_holo_light.9.png │ │ ├── abc_spinner_ab_pressed_holo_dark.9.png │ │ ├── abc_spinner_ab_pressed_holo_light.9.png │ │ ├── abc_tab_selected_focused_holo.9.png │ │ ├── abc_tab_selected_holo.9.png │ │ ├── abc_tab_selected_pressed_holo.9.png │ │ ├── abc_tab_unselected_pressed_holo.9.png │ │ ├── abc_textfield_search_default_holo_dark.9.png │ │ ├── abc_textfield_search_default_holo_light.9.png │ │ ├── abc_textfield_search_right_default_holo_dark.9.png │ │ ├── abc_textfield_search_right_default_holo_light.9.png │ │ ├── abc_textfield_search_right_selected_holo_dark.9.png │ │ ├── abc_textfield_search_right_selected_holo_light.9.png │ │ ├── abc_textfield_search_selected_holo_dark.9.png │ │ └── abc_textfield_search_selected_holo_light.9.png │ ├── drawable-xhdpi │ │ ├── abc_ab_bottom_solid_dark_holo.9.png │ │ ├── abc_ab_bottom_solid_light_holo.9.png │ │ ├── abc_ab_bottom_transparent_dark_holo.9.png │ │ ├── abc_ab_bottom_transparent_light_holo.9.png │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_ab_solid_dark_holo.9.png │ │ ├── abc_ab_solid_light_holo.9.png │ │ ├── abc_ab_stacked_solid_dark_holo.9.png │ │ ├── abc_ab_stacked_solid_light_holo.9.png │ │ ├── abc_ab_stacked_transparent_dark_holo.9.png │ │ ├── abc_ab_stacked_transparent_light_holo.9.png │ │ ├── abc_ab_transparent_dark_holo.9.png │ │ ├── abc_ab_transparent_light_holo.9.png │ │ ├── abc_cab_background_bottom_holo_dark.9.png │ │ ├── abc_cab_background_bottom_holo_light.9.png │ │ ├── abc_cab_background_top_holo_dark.9.png │ │ ├── abc_cab_background_top_holo_light.9.png │ │ ├── abc_ic_ab_back_holo_dark.png │ │ ├── abc_ic_ab_back_holo_light.png │ │ ├── abc_ic_cab_done_holo_dark.png │ │ ├── abc_ic_cab_done_holo_light.png │ │ ├── abc_ic_clear_disabled.png │ │ ├── abc_ic_clear_search_api_disabled_holo_light.png │ │ ├── abc_ic_clear_search_api_holo_light.png │ │ ├── abc_ic_commit_search_api_holo_dark.png │ │ ├── abc_ic_commit_search_api_holo_light.png │ │ ├── abc_ic_go.png │ │ ├── abc_ic_go_search_api_holo_light.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_light.png │ │ ├── abc_ic_menu_share_holo_dark.png │ │ ├── abc_ic_menu_share_holo_light.png │ │ ├── abc_ic_search.png │ │ ├── abc_ic_search_api_holo_light.png │ │ ├── abc_ic_voice_search.png │ │ ├── abc_ic_voice_search_api_holo_light.png │ │ ├── abc_list_divider_holo_dark.9.png │ │ ├── abc_list_divider_holo_light.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_dropdown_panel_holo_dark.9.png │ │ ├── abc_menu_dropdown_panel_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_holo_dark.9.png │ │ ├── abc_menu_hardkey_panel_holo_light.9.png │ │ ├── abc_spinner_ab_default_holo_dark.9.png │ │ ├── abc_spinner_ab_default_holo_light.9.png │ │ ├── abc_spinner_ab_disabled_holo_dark.9.png │ │ ├── abc_spinner_ab_disabled_holo_light.9.png │ │ ├── abc_spinner_ab_focused_holo_dark.9.png │ │ ├── abc_spinner_ab_focused_holo_light.9.png │ │ ├── abc_spinner_ab_pressed_holo_dark.9.png │ │ ├── abc_spinner_ab_pressed_holo_light.9.png │ │ ├── abc_tab_selected_focused_holo.9.png │ │ ├── abc_tab_selected_holo.9.png │ │ ├── abc_tab_selected_pressed_holo.9.png │ │ ├── abc_tab_unselected_pressed_holo.9.png │ │ ├── abc_textfield_search_default_holo_dark.9.png │ │ ├── abc_textfield_search_default_holo_light.9.png │ │ ├── abc_textfield_search_right_default_holo_dark.9.png │ │ ├── abc_textfield_search_right_default_holo_light.9.png │ │ ├── abc_textfield_search_right_selected_holo_dark.9.png │ │ ├── abc_textfield_search_right_selected_holo_light.9.png │ │ ├── abc_textfield_search_selected_holo_dark.9.png │ │ └── abc_textfield_search_selected_holo_light.9.png │ ├── drawable │ │ ├── abc_ic_clear.xml │ │ ├── abc_ic_clear_holo_light.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_search_dropdown_dark.xml │ │ ├── abc_search_dropdown_light.xml │ │ ├── abc_spinner_ab_holo_dark.xml │ │ ├── abc_spinner_ab_holo_light.xml │ │ ├── abc_tab_indicator_ab_holo.xml │ │ ├── abc_textfield_searchview_holo_dark.xml │ │ ├── abc_textfield_searchview_holo_light.xml │ │ ├── abc_textfield_searchview_right_holo_dark.xml │ │ └── abc_textfield_searchview_right_holo_light.xml │ ├── layout-v11 │ │ └── abc_action_bar_decor.xml │ ├── layout-v14 │ │ └── abc_activity_chooser_view.xml │ ├── layout │ │ ├── abc_action_bar_decor.xml │ │ ├── abc_action_bar_decor_include.xml │ │ ├── abc_action_bar_decor_overlay.xml │ │ ├── abc_action_bar_home.xml │ │ ├── abc_action_bar_tab.xml │ │ ├── abc_action_bar_tabbar.xml │ │ ├── abc_action_bar_title_item.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.xml │ │ ├── abc_activity_chooser_view.xml │ │ ├── abc_activity_chooser_view_include.xml │ │ ├── abc_activity_chooser_view_list_item.xml │ │ ├── abc_expanded_menu_layout.xml │ │ ├── abc_list_menu_item_checkbox.xml │ │ ├── abc_list_menu_item_icon.xml │ │ ├── abc_list_menu_item_layout.xml │ │ ├── abc_list_menu_item_radio.xml │ │ ├── abc_popup_menu_item_layout.xml │ │ ├── abc_screen.xml │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ ├── abc_search_view.xml │ │ └── support_simple_spinner_dropdown_item.xml │ ├── values-land │ │ ├── bools.xml │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-large │ │ ├── bools.xml │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-sw600dp │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-v11 │ │ ├── styles_base.xml │ │ └── themes_base.xml │ ├── values-v14 │ │ ├── styles_base.xml │ │ └── themes_base.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 │ │ ├── bools.xml │ │ └── dimens.xml │ └── values │ │ ├── attrs.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── styles_base.xml │ │ ├── themes.xml │ │ └── themes_base.xml └── src │ └── .readme ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── mainModule ├── build.gradle ├── libs │ ├── armeabi │ │ └── libbspatch.so │ ├── ormlite-android-4.48.jar │ ├── ormlite-core-4.48.jar │ └── umeng-update-v2.5.0.jar ├── lint.xml ├── mainModule-release-1.apk ├── mainModule-release.apk ├── mainModule.iml ├── manifest-merger-release-report.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── name │ │ └── tanglei │ │ └── airplaneswitcher │ │ ├── dao │ │ └── DatabaseHelper.java │ │ ├── entity │ │ └── TaskEntity.java │ │ ├── receiver │ │ ├── AlarmReceiver.java │ │ └── BootBroadcastReceiver.java │ │ ├── ui │ │ ├── HomeActivity.java │ │ ├── OperationLogActivity.java │ │ ├── ReceivedAction.java │ │ ├── TaskDetailActivity.java │ │ └── TaskListAdapter.java │ │ └── utils │ │ ├── AirplaneModeUtils.java │ │ ├── OperationLogUtils.java │ │ ├── ShellUtil.java │ │ ├── TaskManagerUtils.java │ │ └── Utils.java │ └── res │ ├── drawable-hdpi │ ├── ic_action_airplane_mode_off.png │ ├── ic_action_cancel.png │ ├── ic_action_help.png │ ├── ic_action_new.png │ ├── ic_action_settings.png │ ├── ic_action_warning.png │ ├── ic_expand.png │ ├── ic_lancher.png │ ├── ic_switch_off.png │ ├── ic_switch_on.png │ ├── umeng_update_btn_check_off_focused_holo_light.png │ ├── umeng_update_btn_check_off_holo_light.png │ ├── umeng_update_btn_check_off_pressed_holo_light.png │ ├── umeng_update_btn_check_on_focused_holo_light.png │ ├── umeng_update_btn_check_on_holo_light.png │ ├── umeng_update_btn_check_on_pressed_holo_light.png │ ├── umeng_update_close_bg_normal.png │ └── umeng_update_close_bg_tap.png │ ├── drawable-ldpi │ └── ic_lancher.png │ ├── drawable-mdpi │ ├── ic_action_about.png │ ├── ic_action_airplane_mode_off.png │ ├── ic_action_help.png │ ├── ic_action_settings.png │ ├── ic_action_warning.png │ ├── ic_lancher.png │ └── ic_launcher.png │ ├── drawable-xhdpi │ ├── ic_action_about.png │ ├── ic_action_airplane_mode_off.png │ ├── ic_action_help.png │ ├── ic_action_settings.png │ ├── ic_action_warning.png │ ├── ic_lancher.png │ └── ic_launcher.png │ ├── drawable-xxhdpi │ ├── ic_action_about.png │ ├── ic_action_airplane_mode_off.png │ ├── ic_action_help.png │ ├── ic_action_settings.png │ ├── ic_action_warning.png │ ├── ic_lancher.png │ └── ic_launcher.png │ ├── drawable │ ├── husky_highlight.xml │ ├── husky_round_full_rectangle.xml │ ├── husky_round_full_rectangle_normal.xml │ ├── husky_round_full_rectangle_pressed.xml │ ├── ic_action_airplane_mode_off.png │ ├── ic_lancher.png │ ├── ic_switch.xml │ ├── tb_munion_icon.xml │ ├── tb_munion_item_selector.xml │ ├── umeng_common_gradient_green.xml │ ├── umeng_common_gradient_orange.xml │ ├── umeng_common_gradient_red.xml │ ├── umeng_update_button_cancel_bg_focused.xml │ ├── umeng_update_button_cancel_bg_normal.xml │ ├── umeng_update_button_cancel_bg_selector.xml │ ├── umeng_update_button_cancel_bg_tap.xml │ ├── umeng_update_button_check_selector.xml │ ├── umeng_update_button_close_bg_selector.xml │ ├── umeng_update_button_ok_bg_focused.xml │ ├── umeng_update_button_ok_bg_normal.xml │ ├── umeng_update_button_ok_bg_selector.xml │ ├── umeng_update_button_ok_bg_tap.xml │ ├── umeng_update_dialog_bg.xml │ ├── umeng_update_title_bg.xml │ └── umeng_update_wifi_disable.png │ ├── layout-v9 │ └── umeng_common_download_notification.xml │ ├── layout │ ├── activity_operation_log.xml │ ├── edit_alarm.xml │ ├── home.xml │ ├── row_alarm.xml │ ├── tb_munion_aditem.xml │ ├── tb_munion_adview.xml │ ├── umeng_common_download_notification.xml │ └── umeng_update_dialog.xml │ ├── menu │ ├── detail.xml │ ├── home.xml │ └── menu_operation_log.xml │ ├── values-sw600dp │ └── dimens.xml │ ├── values-sw720dp-land │ └── dimens.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values-zh │ ├── strings.xml │ ├── umeng_common_strings.xml │ └── umeng_update_string.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ ├── tb_munion_strings.xml │ ├── umeng_common_strings.xml │ └── umeng_update_string.xml ├── settings.gradle └── snapshot ├── 1-main.jpg ├── 2-taskdetail.png ├── 3-enable-delete-log.png ├── 4-umeng-tools.png ├── 5-others.png ├── old ├── android-airplane-auto-switcher-actioning.png ├── android-airplane-auto-switcher-askforaccess.png ├── android-airplane-auto-switcher-confirm.png ├── android-airplane-auto-switcher-main.png └── android-airplanemode-auto-switcher.png └── v1.0 ├── about.jpg ├── addTaskGiveup.jpg ├── addTaskMain.jpg ├── addTaskNewName.jpg ├── addTaskNewNameDoneTip.jpg ├── ask4Permission.jpg ├── default.jpg ├── deleteConfirm.jpg ├── feedBack.jpg ├── feedBackAndReply.jpg ├── help.jpg ├── homeMenu.jpg ├── itemMenu.jpg ├── newUpdate.jpg ├── nextTaskTip.jpg ├── operationLog.jpg ├── switchConfirm.jpg └── taskDetailTime.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build/ 7 | */build/ 8 | */bin/ 9 | *.class 10 | /mainModule/build/ 11 | mainModule/build/ 12 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | AirPlaneModeSwitcher -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 1.8 14 | 15 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AirPlaneModeSwitcher.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | AirPlaneModeSwitcher 2 | =================== 3 | 4 | - The main project: myAirPlaneMode 5 | - ~~The switch compatLib reference: [SwitchCompatLibrary](https://github.com/ankri/SwitchCompatLibrary) used in [v0.2](https://github.com/tl3shi/AirPlaneModeSwitcher/tree/v0.2)~~ 6 | - ~~The actionbar compatLib reference: [actionbarsherlock](https://github.com/JakeWharton/ActionBarSherlock) used in [v0.2](https://github.com/tl3shi/AirPlaneModeSwitcher/tree/v0.2)~~ 7 | 8 | More details(The history): 9 | 10 | - [Android手机定时切换飞行模式代码](http://www.tanglei.name/android-switch-airplanemode-1/) 11 | - 2014-01-23 update: [Android 4.2 自动定时切换飞行模式](http://www.tanglei.name/android-airplanemode-auto-switcher/) 12 | - 2015-01-18 update : [AutoSwither 1.0](http://www.tanglei.name/android-airplanemode-auto-switcher-v2/) 13 | 14 | Some snapshots of the [newest version](http://www.tanglei.name/android-airplanemode-auto-switcher-v2/): 15 | 16 | ![](snapshot/1-main.jpg) 17 | ![](snapshot/2-taskdetail.png) 18 | ![](snapshot/3-enable-delete-log.png) 19 | ![](snapshot/4-umeng-tools.png) 20 | ![](snapshot/5-others.png) -------------------------------------------------------------------------------- /appcompat/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /appcompat/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | appcompat 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /appcompat/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /appcompat/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /appcompat/README.txt: -------------------------------------------------------------------------------- 1 | Library Project including compatibility ActionBar. 2 | 3 | This can be used by an Android project to provide 4 | access to ActionBar on applications running on API 7+. 5 | 6 | There is technically no source, but the src folder is necessary 7 | to ensure that the build system works. The content is actually 8 | located in libs/android-support-v7-appcompat.jar. 9 | The accompanying resources must also be included in the application. 10 | 11 | -------------------------------------------------------------------------------- /appcompat/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/libs/android-support-v4.jar -------------------------------------------------------------------------------- /appcompat/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /appcompat/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library=true 16 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 20 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat/res/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | -------------------------------------------------------------------------------- /appcompat/res/color/abc_search_url_text_holo.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_clear_normal.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_go.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_clear_normal.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_go.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_go.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/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/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_ic_clear.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_ic_clear_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_item_background_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_item_background_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_list_selector_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_search_dropdown_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_search_dropdown_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_spinner_ab_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_spinner_ab_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_textfield_searchview_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_textfield_searchview_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_textfield_searchview_right_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/drawable/abc_textfield_searchview_right_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /appcompat/res/layout-v11/abc_action_bar_decor.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /appcompat/res/layout-v14/abc_activity_chooser_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_decor.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 22 | 29 | 38 | 39 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_tab.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 22 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_tabbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 23 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 23 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_menu_item_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 31 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_menu_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 25 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 25 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_action_mode_close_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 27 | 32 | 33 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_activity_chooser_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 22 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 28 | 29 | -------------------------------------------------------------------------------- /appcompat/res/layout/abc_list_menu_item_radio.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 25 | -------------------------------------------------------------------------------- /appcompat/res/layout/support_simple_spinner_dropdown_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | -------------------------------------------------------------------------------- /appcompat/res/values-land/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | true 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/values-land/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 40dip 20 | 21 | 4dip 22 | 23 | 16dp 24 | 25 | 12dp 26 | 27 | -2dp 28 | 29 | 4dip 30 | 31 | 32 | -------------------------------------------------------------------------------- /appcompat/res/values-large/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | true 20 | 21 | -------------------------------------------------------------------------------- /appcompat/res/values-large/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 22 | 23 | 26 | true 27 | 28 | 29 | 440dp 30 | -------------------------------------------------------------------------------- /appcompat/res/values-large/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 192dip 20 | 23 | 4 24 | 25 | 26 | -------------------------------------------------------------------------------- /appcompat/res/values-sw600dp/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 22 | 23 | 24 | 580dp 25 | -------------------------------------------------------------------------------- /appcompat/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 21 | 5 22 | 23 | 56dip 24 | 25 | 4dip 26 | 27 | 18dp 28 | 29 | 14dp 30 | 31 | -3dp 32 | 33 | 9dip 34 | -------------------------------------------------------------------------------- /appcompat/res/values-v11/styles_base.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 33 | 34 | 35 | 36 | 39 | 40 | 43 | 44 | -------------------------------------------------------------------------------- /appcompat/res/values-w360dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 21 | 3 22 | -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | false 19 | 20 | -------------------------------------------------------------------------------- /appcompat/res/values-w480dp/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | true 18 | 19 | -------------------------------------------------------------------------------- /appcompat/res/values-w500dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 21 | 4 22 | -------------------------------------------------------------------------------- /appcompat/res/values-w720dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | -------------------------------------------------------------------------------- /appcompat/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | -------------------------------------------------------------------------------- /appcompat/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | false 19 | true 20 | true 21 | 22 | false 23 | 24 | -------------------------------------------------------------------------------- /appcompat/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | #7fa87f 18 | @android:color/black 19 | @android:color/black 20 | -------------------------------------------------------------------------------- /appcompat/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 20 | 23 | false 24 | 25 | 28 | 320dp 29 | 30 | 33 | true 34 | -------------------------------------------------------------------------------- /appcompat/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /appcompat/src/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { url "https://raw.githubusercontent.com/umeng/mvn-repo-umeng/master/repository" } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /mainModule/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 17 5 | buildToolsVersion "21.1.2" 6 | 7 | defaultConfig { 8 | applicationId "name.tanglei.airplaneswitcher" 9 | minSdkVersion 11 10 | targetSdkVersion 17 11 | } 12 | 13 | buildTypes { 14 | release { 15 | minifyEnabled true 16 | shrinkResources true 17 | minifyEnabled false 18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 19 | } 20 | } 21 | } 22 | 23 | dependencies { 24 | compile 'com.android.support:support-v4:18.+' 25 | compile 'com.android.support:appcompat-v7:18.+' 26 | compile 'com.umeng.analytics:analytics:latest.integration' 27 | compile 'com.umeng:fb:5.+' 28 | compile files('libs/ormlite-android-4.48.jar') 29 | compile files('libs/ormlite-core-4.48.jar') 30 | compile files('libs/umeng-update-v2.5.0.jar') 31 | } 32 | -------------------------------------------------------------------------------- /mainModule/libs/armeabi/libbspatch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/libs/armeabi/libbspatch.so -------------------------------------------------------------------------------- /mainModule/libs/ormlite-android-4.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/libs/ormlite-android-4.48.jar -------------------------------------------------------------------------------- /mainModule/libs/ormlite-core-4.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/libs/ormlite-core-4.48.jar -------------------------------------------------------------------------------- /mainModule/libs/umeng-update-v2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/libs/umeng-update-v2.5.0.jar -------------------------------------------------------------------------------- /mainModule/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /mainModule/mainModule-release-1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/mainModule-release-1.apk -------------------------------------------------------------------------------- /mainModule/mainModule-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/mainModule-release.apk -------------------------------------------------------------------------------- /mainModule/src/main/java/name/tanglei/airplaneswitcher/receiver/BootBroadcastReceiver.java: -------------------------------------------------------------------------------- 1 | package name.tanglei.airplaneswitcher.receiver; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.util.Log; 7 | 8 | import java.util.List; 9 | 10 | import name.tanglei.airplaneswitcher.dao.DatabaseHelper; 11 | import name.tanglei.airplaneswitcher.entity.TaskEntity; 12 | import name.tanglei.airplaneswitcher.utils.TaskManagerUtils; 13 | 14 | public class BootBroadcastReceiver extends BroadcastReceiver 15 | { 16 | public static final String TAG = BootBroadcastReceiver.class.getName(); 17 | 18 | @Override 19 | public void onReceive(Context context, Intent intent) 20 | { 21 | String action = intent.getAction().toString(); 22 | if (action.equals(Intent.ACTION_BOOT_COMPLETED)) 23 | { 24 | List tasks = DatabaseHelper.queryAllTasks(context); 25 | int count = 0; 26 | for(TaskEntity alarm : tasks) { 27 | if (alarm.isActive()) { 28 | TaskManagerUtils.addOrUpdateTask(context, alarm); 29 | count ++; 30 | } 31 | } 32 | Log.i(TAG, "All active alarms are on schedule: " + count); 33 | return; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_action_airplane_mode_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_action_airplane_mode_off.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_action_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_action_help.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_action_new.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_action_settings.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_action_warning.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_expand.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_lancher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_lancher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_switch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_switch_off.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/ic_switch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/ic_switch_on.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-ldpi/ic_lancher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-ldpi/ic_lancher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-mdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-mdpi/ic_action_about.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-mdpi/ic_action_airplane_mode_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-mdpi/ic_action_airplane_mode_off.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-mdpi/ic_action_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-mdpi/ic_action_help.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-mdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-mdpi/ic_action_settings.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-mdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-mdpi/ic_action_warning.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-mdpi/ic_lancher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-mdpi/ic_lancher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xhdpi/ic_action_about.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xhdpi/ic_action_airplane_mode_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xhdpi/ic_action_airplane_mode_off.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xhdpi/ic_action_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xhdpi/ic_action_help.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xhdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xhdpi/ic_action_warning.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xhdpi/ic_lancher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xhdpi/ic_lancher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xxhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xxhdpi/ic_action_about.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xxhdpi/ic_action_airplane_mode_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xxhdpi/ic_action_airplane_mode_off.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xxhdpi/ic_action_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xxhdpi/ic_action_help.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xxhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xxhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xxhdpi/ic_action_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xxhdpi/ic_action_warning.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xxhdpi/ic_lancher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xxhdpi/ic_lancher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/husky_highlight.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/husky_round_full_rectangle.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/husky_round_full_rectangle_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/husky_round_full_rectangle_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/ic_action_airplane_mode_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable/ic_action_airplane_mode_off.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/ic_lancher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable/ic_lancher.png -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/ic_switch.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/tb_munion_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/tb_munion_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_common_gradient_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_common_gradient_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_common_gradient_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_cancel_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_cancel_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_cancel_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_cancel_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_check_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 10 | 13 | 16 | 17 | 20 | 23 | 24 | 27 | 30 | 31 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_close_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_ok_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_ok_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_ok_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_button_ok_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_title_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /mainModule/src/main/res/drawable/umeng_update_wifi_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/mainModule/src/main/res/drawable/umeng_update_wifi_disable.png -------------------------------------------------------------------------------- /mainModule/src/main/res/layout/activity_operation_log.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /mainModule/src/main/res/layout/home.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /mainModule/src/main/res/layout/tb_munion_aditem.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | -------------------------------------------------------------------------------- /mainModule/src/main/res/layout/tb_munion_adview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 12 | 13 | 20 | 21 | 24 | 25 | 32 | 33 | 39 | 40 | 47 | 48 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /mainModule/src/main/res/menu/detail.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /mainModule/src/main/res/menu/home.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | 16 | 22 | 23 | 28 | 29 | 34 | 35 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /mainModule/src/main/res/menu/menu_operation_log.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values-zh/umeng_common_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 正在下载中. 4 | 下载出错啦,请检查网络后继续。 5 | 暂停 6 | 继续 7 | 取消 8 | 正在下载: 9 | 暂停: 10 | 正在下载应用 11 | 正在更新安装包 12 | 请连接网络后再尝试! 13 | 下载失败 14 | 下载完成,请点击安装 15 | 更新完成,请点击安装 16 | 新版本已经准备好,请点击安装 17 | 18 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values-zh/umeng_update_string.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 未联网 4 | 发现新版本 5 | 最新版本: 6 | 更新内容 7 | 仅需要下载: 8 | 新版本大小: 9 | (提示:非WIFI环境) 10 | 立即更新 11 | 应用更新 12 | 以后再说 13 | 忽略该版 14 | 正在更新中.... 15 | 最新版本已下载,是否安装? 16 | 17 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values/tb_munion_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #e3e3e3 5 | 正在下载: 6 | 7 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values/umeng_common_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | The app is already in downloading list. 4 | dowload interrupted. 5 | Pause 6 | Continue 7 | Cancel 8 | Downloading: 9 | Pause: 10 | Download start. 11 | Patch start. 12 | Please make sure you are connected to internet, download failed 13 | Download Failed! 14 | Download finished,click to install it. 15 | Patch finished,click to install it. 16 | New version is ready,click to install it. 17 | icon 18 | -------------------------------------------------------------------------------- /mainModule/src/main/res/values/umeng_update_string.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Please make sure you are connected to internet,update failed 5 | New version found 6 | Latest version: 7 | Update Content 8 | Update size: 9 | Target size: 10 | (Warning: Not WIFI Condition) 11 | Update now 12 | App updating 13 | Not now 14 | Ingore this 15 | Updating.... 16 | The lastest version has been downloaded, install now ? 17 | 2.5.0.20141210 18 | 19 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mainModule' 2 | -------------------------------------------------------------------------------- /snapshot/1-main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/1-main.jpg -------------------------------------------------------------------------------- /snapshot/2-taskdetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/2-taskdetail.png -------------------------------------------------------------------------------- /snapshot/3-enable-delete-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/3-enable-delete-log.png -------------------------------------------------------------------------------- /snapshot/4-umeng-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/4-umeng-tools.png -------------------------------------------------------------------------------- /snapshot/5-others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/5-others.png -------------------------------------------------------------------------------- /snapshot/old/android-airplane-auto-switcher-actioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/old/android-airplane-auto-switcher-actioning.png -------------------------------------------------------------------------------- /snapshot/old/android-airplane-auto-switcher-askforaccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/old/android-airplane-auto-switcher-askforaccess.png -------------------------------------------------------------------------------- /snapshot/old/android-airplane-auto-switcher-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/old/android-airplane-auto-switcher-confirm.png -------------------------------------------------------------------------------- /snapshot/old/android-airplane-auto-switcher-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/old/android-airplane-auto-switcher-main.png -------------------------------------------------------------------------------- /snapshot/old/android-airplanemode-auto-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/old/android-airplanemode-auto-switcher.png -------------------------------------------------------------------------------- /snapshot/v1.0/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/about.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/addTaskGiveup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/addTaskGiveup.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/addTaskMain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/addTaskMain.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/addTaskNewName.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/addTaskNewName.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/addTaskNewNameDoneTip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/addTaskNewNameDoneTip.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/ask4Permission.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/ask4Permission.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/default.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/deleteConfirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/deleteConfirm.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/feedBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/feedBack.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/feedBackAndReply.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/feedBackAndReply.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/help.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/homeMenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/homeMenu.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/itemMenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/itemMenu.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/newUpdate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/newUpdate.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/nextTaskTip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/nextTaskTip.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/operationLog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/operationLog.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/switchConfirm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/switchConfirm.jpg -------------------------------------------------------------------------------- /snapshot/v1.0/taskDetailTime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tl3shi/AirPlaneModeSwitcher/074ba2b219bfd0980def17d5fd7749e5ee7481f9/snapshot/v1.0/taskDetailTime.jpg --------------------------------------------------------------------------------