├── LICENSE ├── README.md ├── WiFiJammer ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── de │ │ │ └── seemoo │ │ │ └── nexmon │ │ │ └── jammer │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── dhdutil │ │ │ ├── fw_bcmdhd.bin │ │ │ ├── html │ │ │ │ ├── help_jammer.html │ │ │ │ ├── help_receiver.html │ │ │ │ └── help_transmitter.html │ │ │ └── nexutil │ │ ├── java │ │ │ └── de │ │ │ │ └── seemoo │ │ │ │ └── nexmon │ │ │ │ └── jammer │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SplashActivity.java │ │ │ │ ├── VerticalSeekBar.java │ │ │ │ ├── VerticalTextView.java │ │ │ │ ├── aboutus │ │ │ │ ├── AboutUsFragment.java │ │ │ │ └── LicenseDialog.java │ │ │ │ ├── global │ │ │ │ ├── ColorsTuDarmstadt.java │ │ │ │ ├── Constants.java │ │ │ │ └── Variables.java │ │ │ │ ├── jammer │ │ │ │ ├── LargeValueFormatter.java │ │ │ │ ├── PlotFragment.java │ │ │ │ ├── SeekBarFragment.java │ │ │ │ └── SmallValueFormatter.java │ │ │ │ ├── receiver │ │ │ │ └── ReceiverFragment.java │ │ │ │ ├── transmitter │ │ │ │ ├── TransmitterFragment.java │ │ │ │ ├── UDPStream.java │ │ │ │ └── UDPStreamAdapter.java │ │ │ │ └── utils │ │ │ │ ├── Assets.java │ │ │ │ ├── Dhdutil.java │ │ │ │ ├── IPAddressValidator.java │ │ │ │ ├── JammingFirmwareInterface.java │ │ │ │ ├── LEDControl.java │ │ │ │ └── Nexutil.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── seemoo_btn_check_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_off_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_holo_light.png │ │ │ ├── seemoo_btn_check_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_on_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_holo_light.png │ │ │ ├── seemoo_btn_check_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_default_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_default_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_normal_holo_light.9.png │ │ │ ├── seemoo_btn_default_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_radio_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_off_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_holo_light.png │ │ │ ├── seemoo_btn_radio_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_on_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_holo_light.png │ │ │ ├── seemoo_btn_radio_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_toggle_off_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_pressed_holo_light.9.png │ │ │ ├── seemoo_fastscroll_thumb_default_holo.png │ │ │ ├── seemoo_fastscroll_thumb_pressed_holo.png │ │ │ ├── seemoo_ic_navigation_drawer.png │ │ │ ├── seemoo_list_activated_holo.9.png │ │ │ ├── seemoo_list_focused_holo.9.png │ │ │ ├── seemoo_list_longpressed_holo.9.png │ │ │ ├── seemoo_list_pressed_holo_light.9.png │ │ │ ├── seemoo_list_selector_disabled_holo_light.9.png │ │ │ ├── seemoo_progress_bg_holo_light.9.png │ │ │ ├── seemoo_progress_primary_holo_light.9.png │ │ │ ├── seemoo_progress_secondary_holo_light.9.png │ │ │ ├── seemoo_progressbar_indeterminate_holo1.png │ │ │ ├── seemoo_progressbar_indeterminate_holo2.png │ │ │ ├── seemoo_progressbar_indeterminate_holo3.png │ │ │ ├── seemoo_progressbar_indeterminate_holo4.png │ │ │ ├── seemoo_progressbar_indeterminate_holo5.png │ │ │ ├── seemoo_progressbar_indeterminate_holo6.png │ │ │ ├── seemoo_progressbar_indeterminate_holo7.png │ │ │ ├── seemoo_progressbar_indeterminate_holo8.png │ │ │ ├── seemoo_rate_star_big_half_holo_light.png │ │ │ ├── seemoo_rate_star_big_off_holo_light.png │ │ │ ├── seemoo_rate_star_big_on_holo_light.png │ │ │ ├── seemoo_rate_star_small_half_holo_light.png │ │ │ ├── seemoo_rate_star_small_off_holo_light.png │ │ │ ├── seemoo_rate_star_small_on_holo_light.png │ │ │ ├── seemoo_scrubber_control_disabled_holo.png │ │ │ ├── seemoo_scrubber_control_focused_holo.png │ │ │ ├── seemoo_scrubber_control_normal_holo.png │ │ │ ├── seemoo_scrubber_control_pressed_holo.png │ │ │ ├── seemoo_scrubber_primary_holo.9.png │ │ │ ├── seemoo_scrubber_secondary_holo.9.png │ │ │ ├── seemoo_scrubber_track_holo_light.9.png │ │ │ ├── seemoo_spinner_default_holo_light.9.png │ │ │ ├── seemoo_spinner_disabled_holo_light.9.png │ │ │ ├── seemoo_spinner_focused_holo_light.9.png │ │ │ ├── seemoo_spinner_pressed_holo_light.9.png │ │ │ ├── seemoo_switch_bg_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_bg_focused_holo_light.9.png │ │ │ ├── seemoo_switch_bg_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_activated_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_pressed_holo_light.9.png │ │ │ ├── seemoo_tab_selected_focused_holo.9.png │ │ │ ├── seemoo_tab_selected_holo.9.png │ │ │ ├── seemoo_tab_selected_pressed_holo.9.png │ │ │ ├── seemoo_tab_unselected_focused_holo.9.png │ │ │ ├── seemoo_tab_unselected_holo.9.png │ │ │ ├── seemoo_tab_unselected_pressed_holo.9.png │ │ │ ├── seemoo_text_select_handle_left.png │ │ │ ├── seemoo_text_select_handle_middle.png │ │ │ ├── seemoo_text_select_handle_right.png │ │ │ ├── seemoo_textfield_activated_holo_light.9.png │ │ │ ├── seemoo_textfield_default_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_holo_light.9.png │ │ │ └── seemoo_textfield_focused_holo_light.9.png │ │ │ ├── drawable-mdpi │ │ │ ├── seemoo_btn_check_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_off_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_holo_light.png │ │ │ ├── seemoo_btn_check_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_on_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_holo_light.png │ │ │ ├── seemoo_btn_check_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_default_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_default_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_normal_holo_light.9.png │ │ │ ├── seemoo_btn_default_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_radio_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_off_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_holo_light.png │ │ │ ├── seemoo_btn_radio_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_on_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_holo_light.png │ │ │ ├── seemoo_btn_radio_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_toggle_off_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_pressed_holo_light.9.png │ │ │ ├── seemoo_fastscroll_thumb_default_holo.png │ │ │ ├── seemoo_fastscroll_thumb_pressed_holo.png │ │ │ ├── seemoo_ic_navigation_drawer.png │ │ │ ├── seemoo_list_activated_holo.9.png │ │ │ ├── seemoo_list_focused_holo.9.png │ │ │ ├── seemoo_list_longpressed_holo.9.png │ │ │ ├── seemoo_list_pressed_holo_light.9.png │ │ │ ├── seemoo_list_selector_disabled_holo_light.9.png │ │ │ ├── seemoo_progress_bg_holo_light.9.png │ │ │ ├── seemoo_progress_primary_holo_light.9.png │ │ │ ├── seemoo_progress_secondary_holo_light.9.png │ │ │ ├── seemoo_progressbar_indeterminate_holo1.png │ │ │ ├── seemoo_progressbar_indeterminate_holo2.png │ │ │ ├── seemoo_progressbar_indeterminate_holo3.png │ │ │ ├── seemoo_progressbar_indeterminate_holo4.png │ │ │ ├── seemoo_progressbar_indeterminate_holo5.png │ │ │ ├── seemoo_progressbar_indeterminate_holo6.png │ │ │ ├── seemoo_progressbar_indeterminate_holo7.png │ │ │ ├── seemoo_progressbar_indeterminate_holo8.png │ │ │ ├── seemoo_rate_star_big_half_holo_light.png │ │ │ ├── seemoo_rate_star_big_off_holo_light.png │ │ │ ├── seemoo_rate_star_big_on_holo_light.png │ │ │ ├── seemoo_rate_star_small_half_holo_light.png │ │ │ ├── seemoo_rate_star_small_off_holo_light.png │ │ │ ├── seemoo_rate_star_small_on_holo_light.png │ │ │ ├── seemoo_scrubber_control_disabled_holo.png │ │ │ ├── seemoo_scrubber_control_focused_holo.png │ │ │ ├── seemoo_scrubber_control_normal_holo.png │ │ │ ├── seemoo_scrubber_control_pressed_holo.png │ │ │ ├── seemoo_scrubber_primary_holo.9.png │ │ │ ├── seemoo_scrubber_secondary_holo.9.png │ │ │ ├── seemoo_scrubber_track_holo_light.9.png │ │ │ ├── seemoo_spinner_default_holo_light.9.png │ │ │ ├── seemoo_spinner_disabled_holo_light.9.png │ │ │ ├── seemoo_spinner_focused_holo_light.9.png │ │ │ ├── seemoo_spinner_pressed_holo_light.9.png │ │ │ ├── seemoo_switch_bg_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_bg_focused_holo_light.9.png │ │ │ ├── seemoo_switch_bg_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_activated_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_pressed_holo_light.9.png │ │ │ ├── seemoo_tab_selected_focused_holo.9.png │ │ │ ├── seemoo_tab_selected_holo.9.png │ │ │ ├── seemoo_tab_selected_pressed_holo.9.png │ │ │ ├── seemoo_tab_unselected_focused_holo.9.png │ │ │ ├── seemoo_tab_unselected_holo.9.png │ │ │ ├── seemoo_tab_unselected_pressed_holo.9.png │ │ │ ├── seemoo_text_select_handle_left.png │ │ │ ├── seemoo_text_select_handle_middle.png │ │ │ ├── seemoo_text_select_handle_right.png │ │ │ ├── seemoo_textfield_activated_holo_light.9.png │ │ │ ├── seemoo_textfield_default_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_holo_light.9.png │ │ │ └── seemoo_textfield_focused_holo_light.9.png │ │ │ ├── drawable-xhdpi │ │ │ ├── seemoo_btn_check_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_off_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_holo_light.png │ │ │ ├── seemoo_btn_check_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_on_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_holo_light.png │ │ │ ├── seemoo_btn_check_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_default_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_default_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_normal_holo_light.9.png │ │ │ ├── seemoo_btn_default_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_radio_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_off_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_holo_light.png │ │ │ ├── seemoo_btn_radio_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_on_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_holo_light.png │ │ │ ├── seemoo_btn_radio_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_toggle_off_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_pressed_holo_light.9.png │ │ │ ├── seemoo_fastscroll_thumb_default_holo.png │ │ │ ├── seemoo_fastscroll_thumb_pressed_holo.png │ │ │ ├── seemoo_ic_navigation_drawer.png │ │ │ ├── seemoo_list_activated_holo.9.png │ │ │ ├── seemoo_list_focused_holo.9.png │ │ │ ├── seemoo_list_longpressed_holo.9.png │ │ │ ├── seemoo_list_pressed_holo_light.9.png │ │ │ ├── seemoo_list_selector_disabled_holo_light.9.png │ │ │ ├── seemoo_progress_bg_holo_light.9.png │ │ │ ├── seemoo_progress_primary_holo_light.9.png │ │ │ ├── seemoo_progress_secondary_holo_light.9.png │ │ │ ├── seemoo_progressbar_indeterminate_holo1.png │ │ │ ├── seemoo_progressbar_indeterminate_holo2.png │ │ │ ├── seemoo_progressbar_indeterminate_holo3.png │ │ │ ├── seemoo_progressbar_indeterminate_holo4.png │ │ │ ├── seemoo_progressbar_indeterminate_holo5.png │ │ │ ├── seemoo_progressbar_indeterminate_holo6.png │ │ │ ├── seemoo_progressbar_indeterminate_holo7.png │ │ │ ├── seemoo_progressbar_indeterminate_holo8.png │ │ │ ├── seemoo_rate_star_big_half_holo_light.png │ │ │ ├── seemoo_rate_star_big_off_holo_light.png │ │ │ ├── seemoo_rate_star_big_on_holo_light.png │ │ │ ├── seemoo_rate_star_small_half_holo_light.png │ │ │ ├── seemoo_rate_star_small_off_holo_light.png │ │ │ ├── seemoo_rate_star_small_on_holo_light.png │ │ │ ├── seemoo_scrubber_control_disabled_holo.png │ │ │ ├── seemoo_scrubber_control_focused_holo.png │ │ │ ├── seemoo_scrubber_control_normal_holo.png │ │ │ ├── seemoo_scrubber_control_pressed_holo.png │ │ │ ├── seemoo_scrubber_primary_holo.9.png │ │ │ ├── seemoo_scrubber_secondary_holo.9.png │ │ │ ├── seemoo_scrubber_track_holo_light.9.png │ │ │ ├── seemoo_spinner_default_holo_light.9.png │ │ │ ├── seemoo_spinner_disabled_holo_light.9.png │ │ │ ├── seemoo_spinner_focused_holo_light.9.png │ │ │ ├── seemoo_spinner_pressed_holo_light.9.png │ │ │ ├── seemoo_switch_bg_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_bg_focused_holo_light.9.png │ │ │ ├── seemoo_switch_bg_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_activated_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_pressed_holo_light.9.png │ │ │ ├── seemoo_tab_selected_focused_holo.9.png │ │ │ ├── seemoo_tab_selected_holo.9.png │ │ │ ├── seemoo_tab_selected_pressed_holo.9.png │ │ │ ├── seemoo_tab_unselected_focused_holo.9.png │ │ │ ├── seemoo_tab_unselected_holo.9.png │ │ │ ├── seemoo_tab_unselected_pressed_holo.9.png │ │ │ ├── seemoo_text_select_handle_left.png │ │ │ ├── seemoo_text_select_handle_middle.png │ │ │ ├── seemoo_text_select_handle_right.png │ │ │ ├── seemoo_textfield_activated_holo_light.9.png │ │ │ ├── seemoo_textfield_default_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_holo_light.9.png │ │ │ └── seemoo_textfield_focused_holo_light.9.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── seemoo_btn_check_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_off_focused_holo_light.png │ │ │ ├── seemoo_btn_check_off_holo_light.png │ │ │ ├── seemoo_btn_check_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_check_on_focused_holo_light.png │ │ │ ├── seemoo_btn_check_on_holo_light.png │ │ │ ├── seemoo_btn_check_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_default_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_default_focused_holo_light.9.png │ │ │ ├── seemoo_btn_default_normal_holo_light.9.png │ │ │ ├── seemoo_btn_default_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_radio_off_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_off_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_off_holo_light.png │ │ │ ├── seemoo_btn_radio_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_disabled_holo_light.png │ │ │ ├── seemoo_btn_radio_on_focused_holo_light.png │ │ │ ├── seemoo_btn_radio_on_holo_light.png │ │ │ ├── seemoo_btn_radio_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_off_pressed_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_focused_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_normal_holo_light.png │ │ │ ├── seemoo_btn_rating_star_on_pressed_holo_light.png │ │ │ ├── seemoo_btn_toggle_off_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_off_pressed_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_disabled_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_focused_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_normal_holo_light.9.png │ │ │ ├── seemoo_btn_toggle_on_pressed_holo_light.9.png │ │ │ ├── seemoo_fastscroll_thumb_default_holo.png │ │ │ ├── seemoo_fastscroll_thumb_pressed_holo.png │ │ │ ├── seemoo_ic_navigation_drawer.png │ │ │ ├── seemoo_list_activated_holo.9.png │ │ │ ├── seemoo_list_focused_holo.9.png │ │ │ ├── seemoo_list_longpressed_holo.9.png │ │ │ ├── seemoo_list_pressed_holo_light.9.png │ │ │ ├── seemoo_list_selector_disabled_holo_light.9.png │ │ │ ├── seemoo_progress_bg_holo_light.9.png │ │ │ ├── seemoo_progress_primary_holo_light.9.png │ │ │ ├── seemoo_progress_secondary_holo_light.9.png │ │ │ ├── seemoo_progressbar_indeterminate_holo1.png │ │ │ ├── seemoo_progressbar_indeterminate_holo2.png │ │ │ ├── seemoo_progressbar_indeterminate_holo3.png │ │ │ ├── seemoo_progressbar_indeterminate_holo4.png │ │ │ ├── seemoo_progressbar_indeterminate_holo5.png │ │ │ ├── seemoo_progressbar_indeterminate_holo6.png │ │ │ ├── seemoo_progressbar_indeterminate_holo7.png │ │ │ ├── seemoo_progressbar_indeterminate_holo8.png │ │ │ ├── seemoo_rate_star_big_half_holo_light.png │ │ │ ├── seemoo_rate_star_big_off_holo_light.png │ │ │ ├── seemoo_rate_star_big_on_holo_light.png │ │ │ ├── seemoo_rate_star_small_half_holo_light.png │ │ │ ├── seemoo_rate_star_small_off_holo_light.png │ │ │ ├── seemoo_rate_star_small_on_holo_light.png │ │ │ ├── seemoo_scrubber_control_disabled_holo.png │ │ │ ├── seemoo_scrubber_control_focused_holo.png │ │ │ ├── seemoo_scrubber_control_normal_holo.png │ │ │ ├── seemoo_scrubber_control_pressed_holo.png │ │ │ ├── seemoo_scrubber_primary_holo.9.png │ │ │ ├── seemoo_scrubber_secondary_holo.9.png │ │ │ ├── seemoo_scrubber_track_holo_light.9.png │ │ │ ├── seemoo_spinner_default_holo_light.9.png │ │ │ ├── seemoo_spinner_disabled_holo_light.9.png │ │ │ ├── seemoo_spinner_focused_holo_light.9.png │ │ │ ├── seemoo_spinner_pressed_holo_light.9.png │ │ │ ├── seemoo_switch_bg_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_bg_focused_holo_light.9.png │ │ │ ├── seemoo_switch_bg_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_activated_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_disabled_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_holo_light.9.png │ │ │ ├── seemoo_switch_thumb_pressed_holo_light.9.png │ │ │ ├── seemoo_tab_selected_focused_holo.9.png │ │ │ ├── seemoo_tab_selected_holo.9.png │ │ │ ├── seemoo_tab_selected_pressed_holo.9.png │ │ │ ├── seemoo_tab_unselected_focused_holo.9.png │ │ │ ├── seemoo_tab_unselected_holo.9.png │ │ │ ├── seemoo_tab_unselected_pressed_holo.9.png │ │ │ ├── seemoo_text_select_handle_left.png │ │ │ ├── seemoo_text_select_handle_middle.png │ │ │ ├── seemoo_text_select_handle_right.png │ │ │ ├── seemoo_textfield_activated_holo_light.9.png │ │ │ ├── seemoo_textfield_default_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_focused_holo_light.9.png │ │ │ ├── seemoo_textfield_disabled_holo_light.9.png │ │ │ └── seemoo_textfield_focused_holo_light.9.png │ │ │ ├── drawable │ │ │ ├── app_icon.png │ │ │ ├── fab_plus.xml │ │ │ ├── ic_menu.png │ │ │ ├── loadingscreen.png │ │ │ ├── nexmon_logo_color.xml │ │ │ ├── seemoo_activated_background_holo_light.xml │ │ │ ├── seemoo_btn_check_holo_light.xml │ │ │ ├── seemoo_btn_default_holo_light.xml │ │ │ ├── seemoo_btn_radio_holo_light.xml │ │ │ ├── seemoo_btn_toggle_holo_light.xml │ │ │ ├── seemoo_edit_text_holo_light.xml │ │ │ ├── seemoo_fastscroll_thumb_holo.xml │ │ │ ├── seemoo_item_background_holo_light.xml │ │ │ ├── seemoo_list_selector_background_transition_holo_light.xml │ │ │ ├── seemoo_list_selector_holo_light.xml │ │ │ ├── seemoo_logo.xml │ │ │ ├── seemoo_progress_horizontal_holo_light.xml │ │ │ ├── seemoo_progress_indeterminate_horizontal_holo_light.xml │ │ │ ├── seemoo_ratingbar_full_empty_holo_light.xml │ │ │ ├── seemoo_ratingbar_full_filled_holo_light.xml │ │ │ ├── seemoo_ratingbar_full_holo_light.xml │ │ │ ├── seemoo_ratingbar_holo_light.xml │ │ │ ├── seemoo_ratingbar_small_holo_light.xml │ │ │ ├── seemoo_scrubber_control_selector_holo_light.xml │ │ │ ├── seemoo_scrubber_progress_horizontal_holo_light.xml │ │ │ ├── seemoo_spinner_background_holo_light.xml │ │ │ ├── seemoo_switch_inner_holo_light.xml │ │ │ ├── seemoo_switch_track_holo_light.xml │ │ │ ├── seemoo_tab_indicator_holo.xml │ │ │ ├── splashscreen.xml │ │ │ ├── table_divider.xml │ │ │ └── tud_logo.xml │ │ │ ├── layout │ │ │ ├── channels_list.xml │ │ │ ├── console_dump_dialog.xml │ │ │ ├── dst_port_dialog.xml │ │ │ ├── firmware_dialog.xml │ │ │ ├── fragment_about_us.xml │ │ │ ├── fragment_license_dialog.xml │ │ │ ├── freq_plot_fragment.xml │ │ │ ├── help_jammer.xml │ │ │ ├── help_receiver.xml │ │ │ ├── help_transmitter.xml │ │ │ ├── idft_size_dialog.xml │ │ │ ├── ip_dialog.xml │ │ │ ├── list_item.xml │ │ │ ├── main.xml │ │ │ ├── options_dialog.xml │ │ │ ├── receiver_fragment.xml │ │ │ ├── receiver_plot_table_header.xml │ │ │ ├── receiver_plot_table_row.xml │ │ │ ├── seekbar_fragment.xml │ │ │ ├── seemoo_tab_indicator_holo.xml │ │ │ ├── time_plot_fragment.xml │ │ │ ├── transmitter_fragment.xml │ │ │ ├── transmitter_list_item.xml │ │ │ ├── udpstream_dialog.xml │ │ │ └── verticalseekbar.xml │ │ │ ├── menu │ │ │ ├── drawer.xml │ │ │ └── main_menu.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-v11 │ │ │ ├── styles_seemoo.xml │ │ │ └── themes_seemoo.xml │ │ │ ├── values-v9 │ │ │ └── themes_seemoo.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── colors_seemoo.xml │ │ │ ├── dimens.xml │ │ │ ├── dimens_seemoo.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ ├── styles_seemoo.xml │ │ │ └── themes_seemoo.xml │ │ │ └── xml │ │ │ ├── line_point_formatter1.xml │ │ │ └── line_point_formatter2.xml │ │ └── test │ │ └── java │ │ └── de │ │ └── seemoo │ │ └── nexmon │ │ └── jammer │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── test.pcap ├── WiSec2017-DEMO_Demonstrating-Reactive-Smartphone-Based-Jamming_v0.3_print.pdf └── loadingscreen.psd /WiFiJammer/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea 5 | /build 6 | 7 | 8 | app/libs/ 9 | -------------------------------------------------------------------------------- /WiFiJammer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /WiFiJammer/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 25 5 | buildToolsVersion "25.0.2" 6 | defaultConfig { 7 | applicationId 'de.seemoo.nexmon.jammer' 8 | minSdkVersion 23 9 | targetSdkVersion 23 10 | versionCode 1 11 | versionName "1.0" 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | productFlavors { 21 | } 22 | } 23 | 24 | dependencies { 25 | compile 'com.h6ah4i.android.widget.verticalseekbar:verticalseekbar:0.7.2' 26 | compile 'com.github.PhilJay:MPAndroidChart:v3.0.2' 27 | compile 'eu.chainfire:libsuperuser:1.0.0.+' 28 | compile 'com.androidplot:androidplot-core:1.4.2' 29 | compile fileTree(include: ['*.jar'], dir: 'libs') 30 | androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 31 | exclude group: 'com.android.support', module: 'support-annotations' 32 | }) 33 | compile 'com.android.support:appcompat-v7:25.3.0' 34 | compile 'com.android.support:design:25.3.0' 35 | compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7' 36 | testCompile 'junit:junit:4.12' 37 | } 38 | 39 | -------------------------------------------------------------------------------- /WiFiJammer/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in C:\Users\Stathis\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Uncomment this to preserve the line number information for 20 | # debugging stack traces. 21 | #-keepattributes SourceFile,LineNumberTable 22 | 23 | # If you keep the line number information, uncomment this to 24 | # hide the original source file name. 25 | #-renamesourcefileattribute SourceFile 26 | -keep class com.androidplot.** { *; } 27 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/androidTest/java/de/seemoo/nexmon/jammer/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package de.seemoo.nexmon.jammer; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.assertEquals; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("seemo.wifijammer", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/assets/dhdutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/assets/dhdutil -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/assets/fw_bcmdhd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/assets/fw_bcmdhd.bin -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/assets/html/help_jammer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Jammer Help

4 |

bla bla bla

5 | 6 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/assets/html/help_receiver.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Receiver Help

4 |

bla bla bla

5 | 6 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/assets/html/help_transmitter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Transmitter Help

4 |

bla bla bla

5 | 6 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/assets/nexutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/assets/nexutil -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/java/de/seemoo/nexmon/jammer/SplashActivity.java: -------------------------------------------------------------------------------- 1 | package de.seemoo.nexmon.jammer; 2 | 3 | import android.content.Intent; 4 | import android.content.pm.ActivityInfo; 5 | import android.os.Bundle; 6 | import android.support.v7.app.AppCompatActivity; 7 | import android.util.Log; 8 | 9 | /** 10 | * Created by Stathis on 04-May-17. 11 | */ 12 | 13 | public class SplashActivity extends AppCompatActivity { 14 | 15 | @Override 16 | protected void onCreate(Bundle savedInstanceState) { 17 | super.onCreate(savedInstanceState); 18 | Intent intent = new Intent(this, MainActivity.class); 19 | startActivity(intent); 20 | finish(); 21 | } 22 | } -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/java/de/seemoo/nexmon/jammer/global/ColorsTuDarmstadt.java: -------------------------------------------------------------------------------- 1 | package de.seemoo.nexmon.jammer.global; 2 | 3 | import static com.github.mikephil.charting.utils.ColorTemplate.rgb; 4 | 5 | /** 6 | * Created by matthias on 17.05.17. 7 | */ 8 | 9 | public final class ColorsTuDarmstadt { 10 | public static final int COLOR_0B = rgb("#B5B5B5"); 11 | public static final int COLOR_1B = rgb("#005AA9"); 12 | public static final int COLOR_2B = rgb("#0083CC"); 13 | public static final int COLOR_3B = rgb("#009D81"); 14 | public static final int COLOR_4B = rgb("#99C000"); 15 | public static final int COLOR_5B = rgb("#C9D400"); 16 | public static final int COLOR_6B = rgb("#FDCA00"); 17 | public static final int COLOR_7B = rgb("#F5A300"); 18 | public static final int COLOR_8B = rgb("#EC6500"); 19 | public static final int COLOR_9B = rgb("#E6001A"); 20 | public static final int COLOR_10B = rgb("#A60084"); 21 | public static final int COLOR_11B = rgb("#721085"); 22 | 23 | public static final int[] B_COLORS = { 24 | COLOR_0B, COLOR_1B, COLOR_2B, COLOR_3B, COLOR_4B, COLOR_5B, COLOR_6B, 25 | COLOR_7B, COLOR_8B, COLOR_9B, COLOR_10B, COLOR_11B 26 | }; 27 | } 28 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/java/de/seemoo/nexmon/jammer/global/Constants.java: -------------------------------------------------------------------------------- 1 | package de.seemoo.nexmon.jammer.global; 2 | 3 | /** 4 | * Created by matthias on 13.05.17. 5 | */ 6 | 7 | public final class Constants { 8 | public static final int MAX_IDFT_SIZE = 512; 9 | public static final int MIN_IDFT_SIZE = 1; 10 | public static final int OVERSAMPLING_RATE = 2; 11 | public static final int OUT_OF_BAND_SUBCARRIER_PERCENTAGE = 10; 12 | public static final int MAX_SLIDERS_COUNT = (int) Math.ceil((100 + OUT_OF_BAND_SUBCARRIER_PERCENTAGE) * (double) MAX_IDFT_SIZE / OVERSAMPLING_RATE / 100); 13 | public static final int FREQ_PLOT_OVERSAMPLING_RATE = 7; 14 | 15 | public static int getSlidersCount(int ifft_size) { 16 | return (int) Math.ceil((100 + OUT_OF_BAND_SUBCARRIER_PERCENTAGE) * (double) ifft_size / OVERSAMPLING_RATE / 100); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/java/de/seemoo/nexmon/jammer/utils/IPAddressValidator.java: -------------------------------------------------------------------------------- 1 | package de.seemoo.nexmon.jammer.utils; 2 | 3 | import java.util.regex.Matcher; 4 | import java.util.regex.Pattern; 5 | 6 | /** 7 | * Created by Stathis on 05-May-17. 8 | */ 9 | 10 | public class IPAddressValidator { 11 | 12 | private static final String IPADDRESS_PATTERN = 13 | "^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\." + 14 | "([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\." + 15 | "([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\." + 16 | "([01]?\\d\\d?|2[0-4]\\d|25[0-5])$"; 17 | private Pattern pattern; 18 | private Matcher matcher; 19 | 20 | public IPAddressValidator() { 21 | pattern = Pattern.compile(IPADDRESS_PATTERN); 22 | } 23 | 24 | /** 25 | * Validate ip address with regular expression 26 | * 27 | * @param ip ip address for validation 28 | * @return true valid ip address, false invalid ip address 29 | */ 30 | public boolean validate(final String ip) { 31 | matcher = pattern.matcher(ip); 32 | return matcher.matches(); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/java/de/seemoo/nexmon/jammer/utils/JammingFirmwareInterface.java: -------------------------------------------------------------------------------- 1 | package de.seemoo.nexmon.jammer.utils; 2 | 3 | /** 4 | * Created by matthias on 31.05.17. 5 | */ 6 | 7 | public class JammingFirmwareInterface { 8 | protected static JammingFirmwareInterface instance; 9 | 10 | protected JammingFirmwareInterface() { 11 | 12 | } 13 | 14 | public static JammingFirmwareInterface getInstance() { 15 | return instance == null ? new JammingFirmwareInterface() : instance; 16 | } 17 | 18 | 19 | } 20 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_rating_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_ic_navigation_drawer.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_activated_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_disabled_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_focused_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_normal_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_normal_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_control_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_primary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_secondary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_track_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_scrubber_track_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_bg_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_bg_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_bg_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_bg_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_selected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_unselected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_text_select_handle_left.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_text_select_handle_middle.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_text_select_handle_right.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-hdpi/seemoo_textfield_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_rating_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_ic_navigation_drawer.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_activated_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_disabled_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_focused_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_normal_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_normal_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_control_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_primary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_secondary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_track_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_scrubber_track_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_bg_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_bg_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_bg_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_bg_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_selected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_unselected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_text_select_handle_left.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_text_select_handle_middle.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_text_select_handle_right.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-mdpi/seemoo_textfield_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_rating_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_ic_navigation_drawer.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_activated_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_disabled_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_focused_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_normal_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_normal_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_control_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_primary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_secondary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_track_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_scrubber_track_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_bg_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_bg_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_bg_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_bg_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_selected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_unselected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_text_select_handle_left.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_text_select_handle_middle.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_text_select_handle_right.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xhdpi/seemoo_textfield_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_disabled_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_radio_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_rating_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_off_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_normal_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_btn_toggle_on_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_ic_navigation_drawer.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_activated_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_big_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_big_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_big_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_big_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_big_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_big_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_small_half_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_small_half_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_small_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_small_off_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_small_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_rate_star_small_on_holo_light.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_disabled_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_focused_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_normal_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_normal_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_control_pressed_holo.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_primary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_secondary_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_track_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_scrubber_track_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_spinner_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_bg_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_bg_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_bg_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_bg_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_bg_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_selected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_unselected_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_text_select_handle_left.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_text_select_handle_middle.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_text_select_handle_right.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable-xxhdpi/seemoo_textfield_focused_holo_light.9.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable/app_icon.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/fab_plus.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable/ic_menu.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/loadingscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/drawable/loadingscreen.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_activated_background_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_fastscroll_thumb_holo.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_progress_horizontal_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_ratingbar_full_filled_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 23 | 24 | 27 | 28 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_ratingbar_full_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_ratingbar_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_ratingbar_small_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_scrubber_control_selector_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_scrubber_progress_horizontal_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 21 | 23 | 24 | 25 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_spinner_background_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_switch_inner_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/seemoo_switch_track_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/drawable/table_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/channels_list.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/console_dump_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 19 | 20 | 25 | 26 | 29 | 30 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/dst_port_dialog.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | 16 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/freq_plot_fragment.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 15 | 16 | 19 | 20 | 27 | 28 | 33 | 34 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/help_jammer.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/help_receiver.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/help_transmitter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/idft_size_dialog.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | 16 | 17 | 25 | 26 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/ip_dialog.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | 16 | 26 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/seekbar_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 21 | 22 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/seemoo_tab_indicator_holo.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 22 | 23 | 30 | 31 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/layout/transmitter_fragment.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 11 | 12 | 16 | 17 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/menu/drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 12 | 15 | 18 | 21 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/values-v9/themes_seemoo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #EC6500 4 | #A94913 5 | @color/seemoo_color 6 | #FF33B5E5 7 | #FFAA66CC 8 | #FF99CC00 9 | #ffbb33 10 | #FFFF4444 11 | #FF0099CC 12 | #FF9933CC 13 | #FF669900 14 | #FFFF8800 15 | #FFCC0000 16 | #000000 17 | #828083 18 | 19 | 20 | @color/blue 21 | @color/black 22 | @color/purple 23 | @color/green 24 | @color/orange 25 | @color/red 26 | @color/darkblue 27 | @color/darkpurple 28 | @color/darkgreen 29 | @color/darkorange 30 | @color/darkred 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/values/colors_seemoo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ec6500 4 | 5 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 30dp 4 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/values/dimens_seemoo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48dp 4 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Jammer 3 | This is Landscape mode fragment 4 | This is Portrait mode fragment> 5 | Value 6 | 7 | Firmware Installation Required\n\nTo use this app, you need an Android Smartphone 8 | with a Broadcom BCM4339 Wi-Fi chip running firmware version 6.37.34.43. This is for example 9 | the case, when using a Nexus 5 with stock firmware version M4B30Z.\n\nIf and only if the 10 | above requirement evaluates to true, you may continue to install the jamming firmware. Keep 11 | in mind that this firmware might damage your hardware and will void your hardware\'s 12 | warranty. You use the firmware as well as this app at your own risk and responsibility. By 13 | using our firmware and this app, you agree that you will not hold any of the Nexmon 14 | developers responsible for any harm that results from using any of our tools.\n\nIn the 15 | following you may create a backup of the original firmware that copies the firmware file 16 | from /vendor/firmware/fw_bcmdhd.bin to /sdcard/fw_bcmdhd.orig.bin. Once copied, you may 17 | continue to install the jamming firmware. To restore the original firmware, you can use the 18 | "Restore Firmware from Backup" entry in the menu on the left.\n\n 19 | 20 | 21 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 11 | 14 | 17 | 18 | 23 | 24 | 27 | 28 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/xml/line_point_formatter1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/main/res/xml/line_point_formatter2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFiJammer/app/src/test/java/de/seemoo/nexmon/jammer/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package de.seemoo.nexmon.jammer; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.assertEquals; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /WiFiJammer/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:2.3.2' 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 | maven { url "https://jitpack.io" } 18 | jcenter() 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /WiFiJammer/gradle.properties: -------------------------------------------------------------------------------- 1 | ## Project-wide Gradle settings. 2 | # 3 | # For more details on how to configure your build environment visit 4 | # http://www.gradle.org/docs/current/userguide/build_environment.html 5 | # 6 | # Specifies the JVM arguments used for the daemon process. 7 | # The setting is particularly useful for tweaking memory settings. 8 | # Default value: -Xmx1024m -XX:MaxPermSize=256m 9 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 10 | # 11 | # When configured, Gradle will run in incubating parallel mode. 12 | # This option should only be used with decoupled projects. More details, visit 13 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 14 | # org.gradle.parallel=true 15 | #Sun May 14 22:28:54 CEST 2017 16 | systemProp.http.proxyHost=proxy.tu-darmstadt.de 17 | org.gradle.jvmargs=-Xmx1536m 18 | systemProp.http.proxyPort=80 19 | -------------------------------------------------------------------------------- /WiFiJammer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /WiFiJammer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri May 05 21:04:35 CEST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /WiFiJammer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /WiFiJammer/test.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiFiJammer/test.pcap -------------------------------------------------------------------------------- /WiSec2017-DEMO_Demonstrating-Reactive-Smartphone-Based-Jamming_v0.3_print.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/WiSec2017-DEMO_Demonstrating-Reactive-Smartphone-Based-Jamming_v0.3_print.pdf -------------------------------------------------------------------------------- /loadingscreen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/wisec2017_nexmon_jammer_demo_app/8f2dbdf2b32c5f54162d0a84dd6f1b57dd32779b/loadingscreen.psd --------------------------------------------------------------------------------