├── .gitignore ├── LICENSE ├── README.md ├── app ├── build.gradle ├── libs │ └── android-viewbadger.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── geeksonsecurity │ │ └── android │ │ └── overlayprotector │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── geeksonsecurity │ │ └── android │ │ └── overlayprotector │ │ ├── AppListChangedReceiver.java │ │ ├── MainActivity.java │ │ ├── MonitorAccessibilityService.java │ │ ├── MyApplication.java │ │ ├── NavigationDrawerFragment.java │ │ ├── adapter │ │ ├── DetectedOverlayAdapter.java │ │ ├── SuspectedAppsAdapter.java │ │ └── WhiteEntryAdapter.java │ │ ├── database │ │ ├── DatabaseHelper.java │ │ └── DatabaseUtils.java │ │ ├── domain │ │ ├── ConcurrentArrayList.java │ │ ├── DetectedOverlay.java │ │ ├── DetectionEngine.java │ │ ├── EventCounter.java │ │ ├── OverlayState.java │ │ ├── ProcessUpdateEntry.java │ │ ├── ServiceCommunication.java │ │ ├── Settings.java │ │ ├── SuspectedApp.java │ │ └── WhiteEntry.java │ │ ├── service │ │ ├── AbstractDetectionEngine.java │ │ ├── AdvancedDetectionService.java │ │ ├── BaseDetectionEngine.java │ │ ├── IOverlayNotifyService.java │ │ └── ProcessHelper.java │ │ ├── tasks │ │ ├── IServiceStatusProcessor.java │ │ └── ServiceStatusTask.java │ │ ├── view │ │ ├── DetectedOverlayFragment.java │ │ ├── HomeFragment.java │ │ ├── SettingsFragment.java │ │ ├── SuspectedAppsFragment.java │ │ └── WhiteListFragment.java │ │ └── wizard │ │ ├── ConfigWizardActivity.java │ │ ├── ConfigWizardModel.java │ │ ├── WizardInfoPage.java │ │ └── WizardInfoPageFragment.java │ └── res │ ├── drawable-hdpi │ ├── apptheme_btn_check_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_off_disabled_holo_dark.png │ ├── apptheme_btn_check_off_focused_holo_dark.png │ ├── apptheme_btn_check_off_holo_dark.png │ ├── apptheme_btn_check_off_pressed_holo_dark.png │ ├── apptheme_btn_check_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_on_disabled_holo_dark.png │ ├── apptheme_btn_check_on_focused_holo_dark.png │ ├── apptheme_btn_check_on_holo_dark.png │ ├── apptheme_btn_check_on_pressed_holo_dark.png │ ├── apptheme_btn_default_disabled_focused_holo_dark.9.png │ ├── apptheme_btn_default_disabled_holo_dark.9.png │ ├── apptheme_btn_default_focused_holo_dark.9.png │ ├── apptheme_btn_default_normal_holo_dark.9.png │ ├── apptheme_btn_default_pressed_holo_dark.9.png │ ├── apptheme_btn_radio_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_holo_dark.png │ ├── apptheme_btn_radio_off_focused_holo_dark.png │ ├── apptheme_btn_radio_off_holo_dark.png │ ├── apptheme_btn_radio_off_pressed_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_holo_dark.png │ ├── apptheme_btn_radio_on_focused_holo_dark.png │ ├── apptheme_btn_radio_on_holo_dark.png │ ├── apptheme_btn_radio_on_pressed_holo_dark.png │ ├── apptheme_fastscroll_thumb_default_holo.png │ ├── apptheme_fastscroll_thumb_pressed_holo.png │ ├── apptheme_ic_navigation_drawer.png │ ├── apptheme_list_activated_holo.9.png │ ├── apptheme_list_focused_holo.9.png │ ├── apptheme_list_longpressed_holo.9.png │ ├── apptheme_list_pressed_holo_dark.9.png │ ├── apptheme_list_selector_disabled_holo_dark.9.png │ ├── apptheme_textfield_activated_holo_dark.9.png │ ├── apptheme_textfield_default_holo_dark.9.png │ ├── apptheme_textfield_disabled_focused_holo_dark.9.png │ ├── apptheme_textfield_disabled_holo_dark.9.png │ ├── apptheme_textfield_focused_holo_dark.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_new.png │ ├── ic_action_refresh.png │ ├── ic_action_save.png │ ├── ic_actionbar.png │ ├── ic_delete.png │ ├── ic_launcher.png │ ├── ic_launcher_circle.png │ ├── ic_launcher_transparent.png │ ├── ic_notification_small.png │ ├── ic_question_icon.png │ ├── ic_system.png │ └── ic_user.png │ ├── drawable-mdpi │ ├── apptheme_btn_check_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_off_disabled_holo_dark.png │ ├── apptheme_btn_check_off_focused_holo_dark.png │ ├── apptheme_btn_check_off_holo_dark.png │ ├── apptheme_btn_check_off_pressed_holo_dark.png │ ├── apptheme_btn_check_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_on_disabled_holo_dark.png │ ├── apptheme_btn_check_on_focused_holo_dark.png │ ├── apptheme_btn_check_on_holo_dark.png │ ├── apptheme_btn_check_on_pressed_holo_dark.png │ ├── apptheme_btn_default_disabled_focused_holo_dark.9.png │ ├── apptheme_btn_default_disabled_holo_dark.9.png │ ├── apptheme_btn_default_focused_holo_dark.9.png │ ├── apptheme_btn_default_normal_holo_dark.9.png │ ├── apptheme_btn_default_pressed_holo_dark.9.png │ ├── apptheme_btn_radio_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_holo_dark.png │ ├── apptheme_btn_radio_off_focused_holo_dark.png │ ├── apptheme_btn_radio_off_holo_dark.png │ ├── apptheme_btn_radio_off_pressed_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_holo_dark.png │ ├── apptheme_btn_radio_on_focused_holo_dark.png │ ├── apptheme_btn_radio_on_holo_dark.png │ ├── apptheme_btn_radio_on_pressed_holo_dark.png │ ├── apptheme_fastscroll_thumb_default_holo.png │ ├── apptheme_fastscroll_thumb_pressed_holo.png │ ├── apptheme_ic_navigation_drawer.png │ ├── apptheme_list_activated_holo.9.png │ ├── apptheme_list_focused_holo.9.png │ ├── apptheme_list_longpressed_holo.9.png │ ├── apptheme_list_pressed_holo_dark.9.png │ ├── apptheme_list_selector_disabled_holo_dark.9.png │ ├── apptheme_textfield_activated_holo_dark.9.png │ ├── apptheme_textfield_default_holo_dark.9.png │ ├── apptheme_textfield_disabled_focused_holo_dark.9.png │ ├── apptheme_textfield_disabled_holo_dark.9.png │ ├── apptheme_textfield_focused_holo_dark.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_new.png │ ├── ic_action_refresh.png │ ├── ic_action_save.png │ ├── ic_actionbar.png │ ├── ic_delete.png │ ├── ic_launcher.png │ ├── ic_launcher_circle.png │ ├── ic_launcher_transparent.png │ ├── ic_notification_small.png │ ├── ic_question_icon.png │ ├── ic_system.png │ └── ic_user.png │ ├── drawable-xhdpi │ ├── apptheme_btn_check_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_off_disabled_holo_dark.png │ ├── apptheme_btn_check_off_focused_holo_dark.png │ ├── apptheme_btn_check_off_holo_dark.png │ ├── apptheme_btn_check_off_pressed_holo_dark.png │ ├── apptheme_btn_check_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_on_disabled_holo_dark.png │ ├── apptheme_btn_check_on_focused_holo_dark.png │ ├── apptheme_btn_check_on_holo_dark.png │ ├── apptheme_btn_check_on_pressed_holo_dark.png │ ├── apptheme_btn_default_disabled_focused_holo_dark.9.png │ ├── apptheme_btn_default_disabled_holo_dark.9.png │ ├── apptheme_btn_default_focused_holo_dark.9.png │ ├── apptheme_btn_default_normal_holo_dark.9.png │ ├── apptheme_btn_default_pressed_holo_dark.9.png │ ├── apptheme_btn_radio_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_holo_dark.png │ ├── apptheme_btn_radio_off_focused_holo_dark.png │ ├── apptheme_btn_radio_off_holo_dark.png │ ├── apptheme_btn_radio_off_pressed_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_holo_dark.png │ ├── apptheme_btn_radio_on_focused_holo_dark.png │ ├── apptheme_btn_radio_on_holo_dark.png │ ├── apptheme_btn_radio_on_pressed_holo_dark.png │ ├── apptheme_fastscroll_thumb_default_holo.png │ ├── apptheme_fastscroll_thumb_pressed_holo.png │ ├── apptheme_ic_navigation_drawer.png │ ├── apptheme_list_activated_holo.9.png │ ├── apptheme_list_focused_holo.9.png │ ├── apptheme_list_longpressed_holo.9.png │ ├── apptheme_list_pressed_holo_dark.9.png │ ├── apptheme_list_selector_disabled_holo_dark.9.png │ ├── apptheme_textfield_activated_holo_dark.9.png │ ├── apptheme_textfield_default_holo_dark.9.png │ ├── apptheme_textfield_disabled_focused_holo_dark.9.png │ ├── apptheme_textfield_disabled_holo_dark.9.png │ ├── apptheme_textfield_focused_holo_dark.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_new.png │ ├── ic_action_refresh.png │ ├── ic_action_save.png │ ├── ic_actionbar.png │ ├── ic_delete.png │ ├── ic_launcher.png │ ├── ic_launcher_circle.png │ ├── ic_launcher_transparent.png │ ├── ic_notification_small.png │ ├── ic_question_icon.png │ ├── ic_system.png │ └── ic_user.png │ ├── drawable-xxhdpi │ ├── apptheme_btn_check_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_off_disabled_holo_dark.png │ ├── apptheme_btn_check_off_focused_holo_dark.png │ ├── apptheme_btn_check_off_holo_dark.png │ ├── apptheme_btn_check_off_pressed_holo_dark.png │ ├── apptheme_btn_check_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_check_on_disabled_holo_dark.png │ ├── apptheme_btn_check_on_focused_holo_dark.png │ ├── apptheme_btn_check_on_holo_dark.png │ ├── apptheme_btn_check_on_pressed_holo_dark.png │ ├── apptheme_btn_default_disabled_focused_holo_dark.9.png │ ├── apptheme_btn_default_disabled_holo_dark.9.png │ ├── apptheme_btn_default_focused_holo_dark.9.png │ ├── apptheme_btn_default_normal_holo_dark.9.png │ ├── apptheme_btn_default_pressed_holo_dark.9.png │ ├── apptheme_btn_radio_off_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_off_disabled_holo_dark.png │ ├── apptheme_btn_radio_off_focused_holo_dark.png │ ├── apptheme_btn_radio_off_holo_dark.png │ ├── apptheme_btn_radio_off_pressed_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_focused_holo_dark.png │ ├── apptheme_btn_radio_on_disabled_holo_dark.png │ ├── apptheme_btn_radio_on_focused_holo_dark.png │ ├── apptheme_btn_radio_on_holo_dark.png │ ├── apptheme_btn_radio_on_pressed_holo_dark.png │ ├── apptheme_fastscroll_thumb_default_holo.png │ ├── apptheme_fastscroll_thumb_pressed_holo.png │ ├── apptheme_ic_navigation_drawer.png │ ├── apptheme_list_activated_holo.9.png │ ├── apptheme_list_focused_holo.9.png │ ├── apptheme_list_longpressed_holo.9.png │ ├── apptheme_list_pressed_holo_dark.9.png │ ├── apptheme_list_selector_disabled_holo_dark.9.png │ ├── apptheme_textfield_activated_holo_dark.9.png │ ├── apptheme_textfield_default_holo_dark.9.png │ ├── apptheme_textfield_disabled_focused_holo_dark.9.png │ ├── apptheme_textfield_disabled_holo_dark.9.png │ ├── apptheme_textfield_focused_holo_dark.9.png │ ├── drawer_shadow.9.png │ ├── ic_action_new.png │ ├── ic_action_refresh.png │ ├── ic_action_save.png │ ├── ic_actionbar.png │ ├── ic_delete.png │ ├── ic_launcher.png │ ├── ic_launcher_circle.png │ ├── ic_launcher_transparent.png │ ├── ic_notification_small.png │ ├── ic_question_icon.png │ ├── ic_system.png │ └── ic_user.png │ ├── drawable-xxxhdpi │ ├── ic_actionbar.png │ ├── ic_launcher.png │ ├── ic_launcher_circle.png │ ├── ic_launcher_transparent.png │ └── ic_notification_small.png │ ├── drawable │ ├── apptheme_activated_background_holo_dark.xml │ ├── apptheme_btn_check_holo_dark.xml │ ├── apptheme_btn_default_holo_dark.xml │ ├── apptheme_btn_radio_holo_dark.xml │ ├── apptheme_edit_text_holo_dark.xml │ ├── apptheme_fastscroll_thumb_holo.xml │ ├── apptheme_item_background_holo_dark.xml │ ├── apptheme_list_selector_background_transition_holo_dark.xml │ ├── apptheme_list_selector_holo_dark.xml │ ├── configstep1.png │ ├── configstep2.png │ ├── configstep3.png │ ├── drawer_list_selector.xml │ ├── eventborder.xml │ ├── overlay_back.xml │ └── rectangle.xml │ ├── layout │ ├── activity_main.xml │ ├── add_whitelist_dialog.xml │ ├── configwizard.xml │ ├── detectedoverlay_item.xml │ ├── fragment_detectedoverlay_grid.xml │ ├── fragment_detectedoverlay_list.xml │ ├── fragment_main.xml │ ├── fragment_navigation_drawer.xml │ ├── fragment_settings.xml │ ├── fragment_suspectedapps_grid.xml │ ├── fragment_suspectedapps_list.xml │ ├── fragment_whitelist_grid.xml │ ├── fragment_whitelist_list.xml │ ├── logcat_dialog.xml │ ├── overlaydetected.xml │ ├── suspectedapps_item.xml │ ├── whitelist_item.xml │ └── wizard_info_page.xml │ ├── menu │ ├── detected_overlays_menu.xml │ ├── settings_menu.xml │ ├── suspected_apps_menu.xml │ └── whitelist_menu.xml │ ├── values │ ├── colors.xml │ ├── colors_apptheme.xml │ ├── dimens.xml │ ├── refs.xml │ ├── strings.xml │ ├── styles.xml │ ├── styles_apptheme.xml │ └── themes_apptheme.xml │ └── xml │ └── accessibilityservice.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/android-viewbadger.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/libs/android-viewbadger.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/geeksonsecurity/android/overlayprotector/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/androidTest/java/com/geeksonsecurity/android/overlayprotector/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/AppListChangedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/AppListChangedReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/MonitorAccessibilityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/MonitorAccessibilityService.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/MyApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/NavigationDrawerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/NavigationDrawerFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/adapter/DetectedOverlayAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/adapter/DetectedOverlayAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/adapter/SuspectedAppsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/adapter/SuspectedAppsAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/adapter/WhiteEntryAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/adapter/WhiteEntryAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/database/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/database/DatabaseHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/database/DatabaseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/database/DatabaseUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/ConcurrentArrayList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/ConcurrentArrayList.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/DetectedOverlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/DetectedOverlay.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/DetectionEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/DetectionEngine.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/EventCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/EventCounter.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/OverlayState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/OverlayState.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/ProcessUpdateEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/ProcessUpdateEntry.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/ServiceCommunication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/ServiceCommunication.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/Settings.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/SuspectedApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/SuspectedApp.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/WhiteEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/domain/WhiteEntry.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/AbstractDetectionEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/AbstractDetectionEngine.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/AdvancedDetectionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/AdvancedDetectionService.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/BaseDetectionEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/BaseDetectionEngine.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/IOverlayNotifyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/IOverlayNotifyService.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/ProcessHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/service/ProcessHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/tasks/IServiceStatusProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/tasks/IServiceStatusProcessor.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/tasks/ServiceStatusTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/tasks/ServiceStatusTask.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/DetectedOverlayFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/DetectedOverlayFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/HomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/HomeFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/SettingsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/SettingsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/SuspectedAppsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/SuspectedAppsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/WhiteListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/view/WhiteListFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/ConfigWizardActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/ConfigWizardActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/ConfigWizardModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/ConfigWizardModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/WizardInfoPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/WizardInfoPage.java -------------------------------------------------------------------------------- /app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/WizardInfoPageFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/java/com/geeksonsecurity/android/overlayprotector/wizard/WizardInfoPageFragment.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_ic_navigation_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_textfield_activated_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_textfield_activated_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_textfield_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_textfield_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_textfield_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_textfield_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_textfield_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_textfield_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apptheme_textfield_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/apptheme_textfield_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_action_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_action_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_actionbar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_launcher_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_launcher_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notification_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_notification_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_question_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_question_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_system.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-hdpi/ic_user.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_ic_navigation_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_textfield_activated_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_textfield_activated_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_textfield_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_textfield_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_textfield_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_textfield_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_textfield_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_textfield_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apptheme_textfield_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/apptheme_textfield_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_action_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_action_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_actionbar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_launcher_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_launcher_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notification_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_notification_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_question_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_question_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_system.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-mdpi/ic_user.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_ic_navigation_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_textfield_activated_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_textfield_activated_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_textfield_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_textfield_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_textfield_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_textfield_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_textfield_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_textfield_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/apptheme_textfield_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/apptheme_textfield_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_action_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_action_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_actionbar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notification_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_notification_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_question_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_question_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_system.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xhdpi/ic_user.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_check_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_default_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_default_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_default_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_default_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_default_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_default_normal_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_default_normal_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_default_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_default_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_off_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_disabled_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_disabled_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_disabled_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_focused_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_focused_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_pressed_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_btn_radio_on_pressed_holo_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_fastscroll_thumb_default_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_fastscroll_thumb_default_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_fastscroll_thumb_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_fastscroll_thumb_pressed_holo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_ic_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_ic_navigation_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_list_activated_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_list_focused_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_textfield_activated_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_textfield_activated_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_textfield_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_textfield_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_textfield_disabled_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_textfield_disabled_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_textfield_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_textfield_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/apptheme_textfield_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/apptheme_textfield_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_save.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_actionbar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notification_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_notification_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_question_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_question_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_system.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxhdpi/ic_user.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxxhdpi/ic_actionbar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launcher_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxxhdpi/ic_launcher_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launcher_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxxhdpi/ic_launcher_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_notification_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable-xxxhdpi/ic_notification_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_activated_background_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_activated_background_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_btn_check_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_btn_check_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_btn_default_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_btn_default_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_btn_radio_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_btn_radio_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_edit_text_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_edit_text_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_fastscroll_thumb_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_fastscroll_thumb_holo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_item_background_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_item_background_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_list_selector_background_transition_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_list_selector_background_transition_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/apptheme_list_selector_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/apptheme_list_selector_holo_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/configstep1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/configstep1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/configstep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/configstep2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/configstep3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/configstep3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/drawer_list_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/drawer_list_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/eventborder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/eventborder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/overlay_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/overlay_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/drawable/rectangle.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/add_whitelist_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/add_whitelist_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/configwizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/configwizard.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/detectedoverlay_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/detectedoverlay_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_detectedoverlay_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_detectedoverlay_grid.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_detectedoverlay_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_detectedoverlay_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_navigation_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_navigation_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_suspectedapps_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_suspectedapps_grid.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_suspectedapps_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_suspectedapps_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_whitelist_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_whitelist_grid.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_whitelist_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/fragment_whitelist_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/logcat_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/logcat_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/overlaydetected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/overlaydetected.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/suspectedapps_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/suspectedapps_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/whitelist_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/whitelist_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/wizard_info_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/layout/wizard_info_page.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/detected_overlays_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/menu/detected_overlays_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/settings_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/menu/settings_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/suspected_apps_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/menu/suspected_apps_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/whitelist_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/menu/whitelist_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors_apptheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/colors_apptheme.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/refs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles_apptheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/styles_apptheme.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes_apptheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/values/themes_apptheme.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/accessibilityservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/app/src/main/res/xml/accessibilityservice.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeksonsecurity/android-overlay-protection/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------