├── .gitignore ├── ADBLOCKING.md ├── FAQ-de.txt ├── FAQ.md ├── FUNDING.yml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ └── com │ │ │ └── android │ │ │ └── vending │ │ │ └── billing │ │ │ └── IInAppBillingService.aidl │ ├── ic_launcher-web.png │ ├── ic_launcher_foreground.xcf │ ├── ic_launcher_round-web.png │ ├── java │ │ └── eu │ │ │ └── faircode │ │ │ └── netguard │ │ │ ├── ActivityDns.java │ │ │ ├── ActivityForwardApproval.java │ │ │ ├── ActivityForwarding.java │ │ │ ├── ActivityLog.java │ │ │ ├── ActivityMain.java │ │ │ ├── ActivityPro.java │ │ │ ├── ActivitySettings.java │ │ │ ├── AdapterAccess.java │ │ │ ├── AdapterDns.java │ │ │ ├── AdapterForwarding.java │ │ │ ├── AdapterLog.java │ │ │ ├── AdapterRule.java │ │ │ ├── Allowed.java │ │ │ ├── ApplicationEx.java │ │ │ ├── DatabaseHelper.java │ │ │ ├── DownloadTask.java │ │ │ ├── ExpandedListView.java │ │ │ ├── Forward.java │ │ │ ├── FragmentSettings.java │ │ │ ├── GlideHelper.java │ │ │ ├── IAB.java │ │ │ ├── IPUtil.java │ │ │ ├── Packet.java │ │ │ ├── PendingIntentCompat.java │ │ │ ├── ReceiverAutostart.java │ │ │ ├── ReceiverPackageRemoved.java │ │ │ ├── ResourceRecord.java │ │ │ ├── Rule.java │ │ │ ├── ServiceExternal.java │ │ │ ├── ServiceSinkhole.java │ │ │ ├── ServiceTileFilter.java │ │ │ ├── ServiceTileGraph.java │ │ │ ├── ServiceTileLockdown.java │ │ │ ├── ServiceTileMain.java │ │ │ ├── SwitchPreference.java │ │ │ ├── Usage.java │ │ │ ├── Util.java │ │ │ ├── Version.java │ │ │ ├── WidgetAdmin.java │ │ │ ├── WidgetLockdown.java │ │ │ └── WidgetMain.java │ ├── jni │ │ └── netguard │ │ │ ├── dhcp.c │ │ │ ├── dns.c │ │ │ ├── icmp.c │ │ │ ├── ip.c │ │ │ ├── netguard.c │ │ │ ├── netguard.h │ │ │ ├── pcap.c │ │ │ ├── session.c │ │ │ ├── tcp.c │ │ │ ├── tls.c │ │ │ ├── udp.c │ │ │ └── util.c │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_add_circle_outline_white_24dp.png │ │ ├── ic_attach_money_black_24dp.png │ │ ├── ic_attach_money_white_24dp.png │ │ ├── ic_check_white_24dp.png │ │ ├── ic_close_white_24dp.png │ │ ├── ic_cloud_upload_white_24dp.png │ │ ├── ic_delete_black_24dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_equalizer_white_24dp.png │ │ ├── ic_equalizer_white_24dp_60.png │ │ ├── ic_error_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ ├── ic_expand_less_white_24dp.png │ │ ├── ic_expand_more_black_24dp.png │ │ ├── ic_expand_more_white_24dp.png │ │ ├── ic_file_download_white_24dp.png │ │ ├── ic_filter_list_white_24dp.png │ │ ├── ic_filter_list_white_24dp_60.png │ │ ├── ic_hourglass_empty_black_24dp.png │ │ ├── ic_hourglass_empty_white_24dp.png │ │ ├── ic_launch_black_24dp.png │ │ ├── ic_launch_white_24dp.png │ │ ├── ic_lock_open_white_24dp.png │ │ ├── ic_lock_outline_white_24dp.png │ │ ├── ic_lock_outline_white_24dp_60.png │ │ ├── ic_pause_black_24dp.png │ │ ├── ic_pause_white_24dp.png │ │ ├── ic_perm_data_setting_black_24dp.png │ │ ├── ic_perm_data_setting_white_24dp.png │ │ ├── ic_perm_identity_white_24dp.png │ │ ├── ic_play_arrow_black_24dp.png │ │ ├── ic_play_arrow_white_24dp.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_security_color_24dp.png │ │ ├── ic_security_white_24dp.png │ │ ├── ic_security_white_24dp_60.png │ │ ├── ic_settings_black_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_shopping_cart_black_24dp.png │ │ ├── ic_shopping_cart_white_24dp.png │ │ ├── ic_signal_cellular_4_bar_white_24dp.png │ │ ├── ic_signal_cellular_off_white_24dp.png │ │ ├── ic_signal_wifi_4_bar_white_24dp.png │ │ ├── ic_signal_wifi_off_white_24dp.png │ │ └── ic_sort_white_24dp.png │ │ ├── drawable-mdpi │ │ ├── ic_add_circle_outline_white_24dp.png │ │ ├── ic_attach_money_black_24dp.png │ │ ├── ic_attach_money_white_24dp.png │ │ ├── ic_check_white_24dp.png │ │ ├── ic_close_white_24dp.png │ │ ├── ic_cloud_upload_white_24dp.png │ │ ├── ic_delete_black_24dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_equalizer_white_24dp.png │ │ ├── ic_equalizer_white_24dp_60.png │ │ ├── ic_error_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ ├── ic_expand_less_white_24dp.png │ │ ├── ic_expand_more_black_24dp.png │ │ ├── ic_expand_more_white_24dp.png │ │ ├── ic_file_download_white_24dp.png │ │ ├── ic_filter_list_white_24dp.png │ │ ├── ic_filter_list_white_24dp_60.png │ │ ├── ic_hourglass_empty_black_24dp.png │ │ ├── ic_hourglass_empty_white_24dp.png │ │ ├── ic_launch_black_24dp.png │ │ ├── ic_launch_white_24dp.png │ │ ├── ic_lock_open_white_24dp.png │ │ ├── ic_lock_outline_white_24dp.png │ │ ├── ic_lock_outline_white_24dp_60.png │ │ ├── ic_pause_black_24dp.png │ │ ├── ic_pause_white_24dp.png │ │ ├── ic_perm_data_setting_black_24dp.png │ │ ├── ic_perm_data_setting_white_24dp.png │ │ ├── ic_perm_identity_white_24dp.png │ │ ├── ic_play_arrow_black_24dp.png │ │ ├── ic_play_arrow_white_24dp.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_security_color_24dp.png │ │ ├── ic_security_white_24dp.png │ │ ├── ic_security_white_24dp_60.png │ │ ├── ic_settings_black_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_shopping_cart_black_24dp.png │ │ ├── ic_shopping_cart_white_24dp.png │ │ ├── ic_signal_cellular_4_bar_white_24dp.png │ │ ├── ic_signal_cellular_off_white_24dp.png │ │ ├── ic_signal_wifi_4_bar_white_24dp.png │ │ ├── ic_signal_wifi_off_white_24dp.png │ │ └── ic_sort_white_24dp.png │ │ ├── drawable-xhdpi │ │ ├── ic_add_circle_outline_white_24dp.png │ │ ├── ic_attach_money_black_24dp.png │ │ ├── ic_attach_money_white_24dp.png │ │ ├── ic_check_white_24dp.png │ │ ├── ic_close_white_24dp.png │ │ ├── ic_cloud_upload_white_24dp.png │ │ ├── ic_delete_black_24dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_equalizer_white_24dp.png │ │ ├── ic_equalizer_white_24dp_60.png │ │ ├── ic_error_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ ├── ic_expand_less_white_24dp.png │ │ ├── ic_expand_more_black_24dp.png │ │ ├── ic_expand_more_white_24dp.png │ │ ├── ic_file_download_white_24dp.png │ │ ├── ic_filter_list_white_24dp.png │ │ ├── ic_filter_list_white_24dp_60.png │ │ ├── ic_hourglass_empty_black_24dp.png │ │ ├── ic_hourglass_empty_white_24dp.png │ │ ├── ic_launch_black_24dp.png │ │ ├── ic_launch_white_24dp.png │ │ ├── ic_lock_open_white_24dp.png │ │ ├── ic_lock_outline_white_24dp.png │ │ ├── ic_lock_outline_white_24dp_60.png │ │ ├── ic_pause_black_24dp.png │ │ ├── ic_pause_white_24dp.png │ │ ├── ic_perm_data_setting_black_24dp.png │ │ ├── ic_perm_data_setting_white_24dp.png │ │ ├── ic_perm_identity_white_24dp.png │ │ ├── ic_play_arrow_black_24dp.png │ │ ├── ic_play_arrow_white_24dp.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_security_color_24dp.png │ │ ├── ic_security_white_24dp.png │ │ ├── ic_security_white_24dp_60.png │ │ ├── ic_settings_black_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_shopping_cart_black_24dp.png │ │ ├── ic_shopping_cart_white_24dp.png │ │ ├── ic_signal_cellular_4_bar_white_24dp.png │ │ ├── ic_signal_cellular_off_white_24dp.png │ │ ├── ic_signal_wifi_4_bar_white_24dp.png │ │ ├── ic_signal_wifi_off_white_24dp.png │ │ └── ic_sort_white_24dp.png │ │ ├── drawable-xxhdpi │ │ ├── ic_add_circle_outline_white_24dp.png │ │ ├── ic_attach_money_black_24dp.png │ │ ├── ic_attach_money_white_24dp.png │ │ ├── ic_check_white_24dp.png │ │ ├── ic_close_white_24dp.png │ │ ├── ic_cloud_upload_white_24dp.png │ │ ├── ic_delete_black_24dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_equalizer_white_24dp.png │ │ ├── ic_equalizer_white_24dp_60.png │ │ ├── ic_error_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ ├── ic_expand_less_white_24dp.png │ │ ├── ic_expand_more_black_24dp.png │ │ ├── ic_expand_more_white_24dp.png │ │ ├── ic_file_download_white_24dp.png │ │ ├── ic_filter_list_white_24dp.png │ │ ├── ic_filter_list_white_24dp_60.png │ │ ├── ic_hourglass_empty_black_24dp.png │ │ ├── ic_hourglass_empty_white_24dp.png │ │ ├── ic_launch_black_24dp.png │ │ ├── ic_launch_white_24dp.png │ │ ├── ic_lock_open_white_24dp.png │ │ ├── ic_lock_outline_white_24dp.png │ │ ├── ic_lock_outline_white_24dp_60.png │ │ ├── ic_pause_black_24dp.png │ │ ├── ic_pause_white_24dp.png │ │ ├── ic_perm_data_setting_black_24dp.png │ │ ├── ic_perm_data_setting_white_24dp.png │ │ ├── ic_perm_identity_white_24dp.png │ │ ├── ic_play_arrow_black_24dp.png │ │ ├── ic_play_arrow_white_24dp.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_security_color_24dp.png │ │ ├── ic_security_white_24dp.png │ │ ├── ic_security_white_24dp_60.png │ │ ├── ic_settings_black_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_shopping_cart_black_24dp.png │ │ ├── ic_shopping_cart_white_24dp.png │ │ ├── ic_signal_cellular_4_bar_white_24dp.png │ │ ├── ic_signal_cellular_off_white_24dp.png │ │ ├── ic_signal_wifi_4_bar_white_24dp.png │ │ ├── ic_signal_wifi_off_white_24dp.png │ │ └── ic_sort_white_24dp.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_add_circle_outline_white_24dp.png │ │ ├── ic_attach_money_black_24dp.png │ │ ├── ic_attach_money_white_24dp.png │ │ ├── ic_check_white_24dp.png │ │ ├── ic_close_white_24dp.png │ │ ├── ic_cloud_upload_white_24dp.png │ │ ├── ic_delete_black_24dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_equalizer_white_24dp.png │ │ ├── ic_equalizer_white_24dp_60.png │ │ ├── ic_error_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ ├── ic_expand_less_white_24dp.png │ │ ├── ic_expand_more_black_24dp.png │ │ ├── ic_expand_more_white_24dp.png │ │ ├── ic_file_download_white_24dp.png │ │ ├── ic_filter_list_white_24dp.png │ │ ├── ic_filter_list_white_24dp_60.png │ │ ├── ic_hourglass_empty_black_24dp.png │ │ ├── ic_hourglass_empty_white_24dp.png │ │ ├── ic_launch_black_24dp.png │ │ ├── ic_launch_white_24dp.png │ │ ├── ic_lock_open_white_24dp.png │ │ ├── ic_lock_outline_white_24dp.png │ │ ├── ic_lock_outline_white_24dp_60.png │ │ ├── ic_pause_black_24dp.png │ │ ├── ic_pause_white_24dp.png │ │ ├── ic_perm_data_setting_black_24dp.png │ │ ├── ic_perm_data_setting_white_24dp.png │ │ ├── ic_perm_identity_white_24dp.png │ │ ├── ic_play_arrow_black_24dp.png │ │ ├── ic_play_arrow_white_24dp.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_security_color_24dp.png │ │ ├── ic_security_white_24dp.png │ │ ├── ic_security_white_24dp_60.png │ │ ├── ic_settings_black_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_shopping_cart_black_24dp.png │ │ ├── ic_shopping_cart_white_24dp.png │ │ ├── ic_signal_cellular_4_bar_white_24dp.png │ │ ├── ic_signal_cellular_off_white_24dp.png │ │ ├── ic_signal_wifi_4_bar_white_24dp.png │ │ ├── ic_signal_wifi_off_white_24dp.png │ │ └── ic_sort_white_24dp.png │ │ ├── drawable │ │ ├── baseline_file_copy_24.xml │ │ ├── expander_black.xml │ │ ├── expander_white.xml │ │ ├── host_allowed.xml │ │ ├── host_blocked.xml │ │ ├── lockdown.xml │ │ ├── lockdown_disabled.xml │ │ ├── lockdown_off.xml │ │ ├── lockdown_on.xml │ │ ├── other.xml │ │ ├── other_off.xml │ │ ├── other_off_disabled.xml │ │ ├── other_on.xml │ │ ├── other_on_disabled.xml │ │ ├── screen.xml │ │ ├── screen_on.xml │ │ ├── screen_on_disabled.xml │ │ ├── twotone_info_outline_24.xml │ │ ├── twotone_notifications_24.xml │ │ ├── wifi.xml │ │ ├── wifi_off.xml │ │ ├── wifi_off_disabled.xml │ │ ├── wifi_on.xml │ │ └── wifi_on_disabled.xml │ │ ├── layout │ │ ├── about.xml │ │ ├── access.xml │ │ ├── actionlog.xml │ │ ├── actionmain.xml │ │ ├── android.xml │ │ ├── challenge.xml │ │ ├── datasaving.xml │ │ ├── dns.xml │ │ ├── doze.xml │ │ ├── enable.xml │ │ ├── filter.xml │ │ ├── first.xml │ │ ├── forward.xml │ │ ├── forwardadd.xml │ │ ├── forwardapproval.xml │ │ ├── forwarding.xml │ │ ├── legend.xml │ │ ├── log.xml │ │ ├── logging.xml │ │ ├── main.xml │ │ ├── pro.xml │ │ ├── resolving.xml │ │ ├── rule.xml │ │ ├── sure.xml │ │ ├── traffic.xml │ │ ├── vpn.xml │ │ ├── widgetlockdown.xml │ │ ├── widgetmain.xml │ │ └── xposed.xml │ │ ├── menu │ │ ├── access.xml │ │ ├── dns.xml │ │ ├── forward.xml │ │ ├── forwarding.xml │ │ ├── log.xml │ │ ├── logging.xml │ │ ├── main.xml │ │ └── pro.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-af-rZA │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ └── strings.xml │ │ ├── values-az-rAZ │ │ └── strings.xml │ │ ├── values-bg-rBG │ │ └── strings.xml │ │ ├── values-bn-rBD │ │ └── strings.xml │ │ ├── values-ca-rES │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ └── strings.xml │ │ ├── values-da-rDK │ │ └── strings.xml │ │ ├── values-de-rDE │ │ └── strings.xml │ │ ├── values-el-rGR │ │ └── strings.xml │ │ ├── values-en-rUS │ │ └── strings.xml │ │ ├── values-es-rES │ │ └── strings.xml │ │ ├── values-et-rEE │ │ └── strings.xml │ │ ├── values-eu-rES │ │ └── strings.xml │ │ ├── values-fa-rIR │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ └── strings.xml │ │ ├── values-fil-rPH │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ └── strings.xml │ │ ├── values-hi-rIN │ │ └── strings.xml │ │ ├── values-hr-rHR │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ └── strings.xml │ │ ├── values-in-rID │ │ └── strings.xml │ │ ├── values-it-rIT │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ └── strings.xml │ │ ├── values-ka-rGE │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ └── strings.xml │ │ ├── values-lt-rLT │ │ └── strings.xml │ │ ├── values-lv-rLV │ │ └── strings.xml │ │ ├── values-ml-rIN │ │ └── strings.xml │ │ ├── values-my-rMM │ │ └── strings.xml │ │ ├── values-nl-rNL │ │ └── strings.xml │ │ ├── values-no-rNO │ │ └── strings.xml │ │ ├── values-or-rIN │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-si-rLK │ │ └── strings.xml │ │ ├── values-sk-rSK │ │ └── strings.xml │ │ ├── values-sl-rSI │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ └── strings.xml │ │ ├── values-ta-rIN │ │ └── strings.xml │ │ ├── values-tl-rPH │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ ├── values-ug-rCN │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ └── strings.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-vi-rVN │ │ └── strings.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ ├── xml-v14 │ │ └── preferences.xml │ │ ├── xml-v21 │ │ └── preferences.xml │ │ └── xml │ │ ├── network_security_config.xml │ │ ├── predefined.xml │ │ ├── shortcuts.xml │ │ ├── widgetlockdown.xml │ │ └── widgetmain.xml │ └── play │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── playstore ├── PLAY-es.md ├── PLAY-hi.md ├── PLAY-ro.md ├── PLAY-ta.md ├── PLAY.md ├── play.png └── play.xcf ├── screenshots ├── 01-main.png ├── 02-main-details.png ├── 03-main-access.png ├── 04-main-legend.png ├── 05-main-filter.png ├── 06-main-sort.png ├── 07-main-menu.png ├── 08-notifications.png ├── 101-main.png ├── 102-main-details.png ├── 103-main-access.png ├── 104-main-legend.png ├── 105-main-filter.png ├── 106-main-sort.png ├── 107-main-menu.png ├── 108-notifications.png ├── 120-traffic-log.png ├── 121-traffic-filter.png ├── 122-traffic-menu.png ├── 123-traffic-popup.png ├── 130-settings-default.png ├── 131-settings-options.png ├── 132-settings-network.png ├── 133-settings-advanced.png ├── 134-settings-speed.png ├── 135-settings-add-port.png ├── 136-settings-ports.png ├── 150-theme.png ├── 151-theme.png ├── 152-theme.png ├── 153-theme.png ├── 154-theme.png ├── 155-theme.png ├── 156-theme.png ├── 157-theme.png ├── 158-theme.png ├── 159-theme.png ├── 160-theme.png ├── 20-traffic-log.png ├── 21-traffic-filter.png ├── 22-traffic-menu.png ├── 23-traffic-popup.png ├── 30-settings-default.png ├── 31-settings-options.png ├── 32-settings-network.png ├── 33-settings-advanced.png ├── 34-settings-speed.png ├── 35-settings-add-port.png ├── 36-settings-ports.png ├── 50-theme.png ├── 51-theme.png ├── 52-theme.png ├── 53-theme.png ├── 54-theme.png ├── 55-theme.png ├── 56-theme.png ├── 57-theme.png ├── 58-theme.png ├── 59-theme.png └── 60-theme.png ├── settings.gradle └── tools ├── Crowdin-Android-Importer.patch ├── TCP_state_diagram.jpg ├── addr2line.sh ├── checkprefs.sh └── strings.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea 5 | /.idea/workspace.xml 6 | /.idea/libraries 7 | .DS_Store 8 | /build 9 | /captures 10 | /tools/config.sh 11 | /app/.externalNativeBuild 12 | /app/release 13 | /app/play 14 | keystore.properties 15 | crowdin.properties 16 | app/.cxx/ 17 | -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [M66B] 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | cmake_minimum_required(VERSION 3.4.1) 3 | 4 | add_library( netguard 5 | SHARED 6 | src/main/jni/netguard/netguard.c 7 | src/main/jni/netguard/session.c 8 | src/main/jni/netguard/ip.c 9 | src/main/jni/netguard/tcp.c 10 | src/main/jni/netguard/udp.c 11 | src/main/jni/netguard/icmp.c 12 | src/main/jni/netguard/tls.c 13 | src/main/jni/netguard/dns.c 14 | src/main/jni/netguard/dhcp.c 15 | src/main/jni/netguard/pcap.c 16 | src/main/jni/netguard/util.c ) 17 | 18 | include_directories( src/main/jni/netguard/ ) 19 | 20 | find_library( log-lib 21 | log ) 22 | 23 | target_link_libraries( netguard 24 | ${log-lib} ) 25 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/marcel/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | #Line numbers 20 | -renamesourcefileattribute SourceFile 21 | -keepattributes SourceFile,LineNumberTable 22 | 23 | #NetGuard 24 | -keepnames class eu.faircode.netguard.** { *; } 25 | 26 | #JNI 27 | -keepclasseswithmembernames class * { 28 | native ; 29 | } 30 | 31 | #JNI callbacks 32 | -keep class eu.faircode.netguard.Allowed { *; } 33 | -keep class eu.faircode.netguard.Packet { *; } 34 | -keep class eu.faircode.netguard.ResourceRecord { *; } 35 | -keep class eu.faircode.netguard.Usage { *; } 36 | -keep class eu.faircode.netguard.ServiceSinkhole { 37 | void nativeExit(java.lang.String); 38 | void nativeError(int, java.lang.String); 39 | void logPacket(eu.faircode.netguard.Packet); 40 | void dnsResolved(eu.faircode.netguard.ResourceRecord); 41 | boolean isDomainBlocked(java.lang.String); 42 | int getUidQ(int, int, java.lang.String, int, java.lang.String, int); 43 | eu.faircode.netguard.Allowed isAddressAllowed(eu.faircode.netguard.Packet); 44 | void accountUsage(eu.faircode.netguard.Usage); 45 | } 46 | 47 | #AndroidX 48 | -keep class androidx.appcompat.widget.** { *; } 49 | -keep class androidx.appcompat.app.AppCompatViewInflater { (...); } 50 | -keepclassmembers class * implements android.os.Parcelable { static ** CREATOR; } 51 | 52 | #Glide 53 | -keep public class * implements com.bumptech.glide.module.GlideModule 54 | -keep public class * extends com.bumptech.glide.module.AppGlideModule 55 | -keep enum com.bumptech.glide.** {*;} 56 | #-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** { 57 | # **[] $VALUES; 58 | # public *; 59 | #} 60 | 61 | #AdMob 62 | -dontwarn com.google.android.gms.internal.** 63 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher_foreground.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/ic_launcher_foreground.xcf -------------------------------------------------------------------------------- /app/src/main/ic_launcher_round-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/ic_launcher_round-web.png -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/AdapterForwarding.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | import android.content.Context; 23 | import android.database.Cursor; 24 | import android.text.TextUtils; 25 | import android.view.LayoutInflater; 26 | import android.view.View; 27 | import android.view.ViewGroup; 28 | import android.widget.CursorAdapter; 29 | import android.widget.TextView; 30 | 31 | public class AdapterForwarding extends CursorAdapter { 32 | private int colProtocol; 33 | private int colDPort; 34 | private int colRAddr; 35 | private int colRPort; 36 | private int colRUid; 37 | 38 | public AdapterForwarding(Context context, Cursor cursor) { 39 | super(context, cursor, 0); 40 | colProtocol = cursor.getColumnIndex("protocol"); 41 | colDPort = cursor.getColumnIndex("dport"); 42 | colRAddr = cursor.getColumnIndex("raddr"); 43 | colRPort = cursor.getColumnIndex("rport"); 44 | colRUid = cursor.getColumnIndex("ruid"); 45 | } 46 | 47 | @Override 48 | public View newView(Context context, Cursor cursor, ViewGroup parent) { 49 | return LayoutInflater.from(context).inflate(R.layout.forward, parent, false); 50 | } 51 | 52 | @Override 53 | public void bindView(final View view, final Context context, final Cursor cursor) { 54 | // Get values 55 | int protocol = cursor.getInt(colProtocol); 56 | int dport = cursor.getInt(colDPort); 57 | String raddr = cursor.getString(colRAddr); 58 | int rport = cursor.getInt(colRPort); 59 | int ruid = cursor.getInt(colRUid); 60 | 61 | // Get views 62 | TextView tvProtocol = view.findViewById(R.id.tvProtocol); 63 | TextView tvDPort = view.findViewById(R.id.tvDPort); 64 | TextView tvRAddr = view.findViewById(R.id.tvRAddr); 65 | TextView tvRPort = view.findViewById(R.id.tvRPort); 66 | TextView tvRUid = view.findViewById(R.id.tvRUid); 67 | 68 | tvProtocol.setText(Util.getProtocolName(protocol, 0, false)); 69 | tvDPort.setText(Integer.toString(dport)); 70 | tvRAddr.setText(raddr); 71 | tvRPort.setText(Integer.toString(rport)); 72 | tvRUid.setText(TextUtils.join(", ", Util.getApplicationNames(ruid, context))); 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/Allowed.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | public class Allowed { 23 | public String raddr; 24 | public int rport; 25 | 26 | public Allowed() { 27 | this.raddr = null; 28 | this.rport = 0; 29 | } 30 | 31 | public Allowed(String raddr, int rport) { 32 | this.raddr = raddr; 33 | this.rport = rport; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/ExpandedListView.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | import android.content.Context; 23 | import android.util.AttributeSet; 24 | import android.widget.ListView; 25 | 26 | // This requires list view items with equal heights 27 | 28 | public class ExpandedListView extends ListView { 29 | public ExpandedListView(Context context) { 30 | super(context); 31 | } 32 | 33 | public ExpandedListView(Context context, AttributeSet attrs) { 34 | super(context, attrs); 35 | } 36 | 37 | public ExpandedListView(Context context, AttributeSet attrs, int defStyleAttr) { 38 | super(context, attrs, defStyleAttr); 39 | } 40 | 41 | @Override 42 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 43 | super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 4, MeasureSpec.AT_MOST)); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/Forward.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | public class Forward { 23 | public int protocol; 24 | public int dport; 25 | public String raddr; 26 | public int rport; 27 | public int ruid; 28 | 29 | @Override 30 | public String toString() { 31 | return "protocol=" + protocol + " port " + dport + " to " + raddr + "/" + rport + " uid " + ruid; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/FragmentSettings.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | import android.os.Bundle; 23 | import android.preference.PreferenceFragment; 24 | 25 | public class FragmentSettings extends PreferenceFragment { 26 | 27 | @Override 28 | public void onCreate(Bundle savedInstanceState) { 29 | super.onCreate(savedInstanceState); 30 | addPreferencesFromResource(R.xml.preferences); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/GlideHelper.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | import com.bumptech.glide.annotation.GlideModule; 4 | import com.bumptech.glide.module.AppGlideModule; 5 | 6 | @GlideModule 7 | public final class GlideHelper extends AppGlideModule { 8 | } -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/Packet.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | public class Packet { 23 | public long time; 24 | public int version; 25 | public int protocol; 26 | public String flags; 27 | public String saddr; 28 | public int sport; 29 | public String daddr; 30 | public int dport; 31 | public String data; 32 | public int uid; 33 | public boolean allowed; 34 | 35 | public Packet() { 36 | } 37 | 38 | @Override 39 | public String toString() { 40 | return "uid=" + uid + " v" + version + " p" + protocol + " " + daddr + "/" + dport; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/ReceiverPackageRemoved.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | import android.content.BroadcastReceiver; 23 | import android.content.Context; 24 | import android.content.Intent; 25 | import android.util.Log; 26 | 27 | import androidx.core.app.NotificationManagerCompat; 28 | 29 | public class ReceiverPackageRemoved extends BroadcastReceiver { 30 | private static final String TAG = "NetGuard.Receiver"; 31 | 32 | @Override 33 | public void onReceive(final Context context, Intent intent) { 34 | Log.i(TAG, "Received " + intent); 35 | Util.logExtras(intent); 36 | 37 | String action = (intent == null ? null : intent.getAction()); 38 | if (Intent.ACTION_PACKAGE_FULLY_REMOVED.equals(action)) { 39 | int uid = intent.getIntExtra(Intent.EXTRA_UID, 0); 40 | if (uid > 0) { 41 | DatabaseHelper dh = DatabaseHelper.getInstance(context); 42 | dh.clearLog(uid); 43 | dh.clearAccess(uid, false); 44 | 45 | NotificationManagerCompat.from(context).cancel(uid); // installed notification 46 | NotificationManagerCompat.from(context).cancel(uid + 10000); // access notification 47 | } 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/ResourceRecord.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | import java.text.DateFormat; 23 | import java.text.SimpleDateFormat; 24 | import java.util.Date; 25 | 26 | public class ResourceRecord { 27 | public long Time; 28 | public String QName; 29 | public String AName; 30 | public String Resource; 31 | public int TTL; 32 | public int uid; 33 | 34 | private static DateFormat formatter = SimpleDateFormat.getDateTimeInstance(); 35 | 36 | public ResourceRecord() { 37 | } 38 | 39 | @Override 40 | public String toString() { 41 | return formatter.format(new Date(Time).getTime()) + 42 | " Q " + QName + 43 | " A " + AName + 44 | " R " + Resource + 45 | " TTL " + TTL + 46 | " uid " + uid + 47 | " " + formatter.format(new Date(Time + TTL * 1000L).getTime()); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/SwitchPreference.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | import android.content.Context; 23 | import android.util.AttributeSet; 24 | 25 | // https://code.google.com/p/android/issues/detail?id=26194 26 | 27 | public class SwitchPreference extends android.preference.SwitchPreference { 28 | public SwitchPreference(Context context) { 29 | this(context, null); 30 | } 31 | 32 | public SwitchPreference(Context context, AttributeSet attrs) { 33 | this(context, attrs, android.R.attr.switchPreferenceStyle); 34 | } 35 | 36 | public SwitchPreference(Context context, AttributeSet attrs, int defStyle) { 37 | super(context, attrs, defStyle); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/Usage.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | import java.text.DateFormat; 23 | import java.text.SimpleDateFormat; 24 | import java.util.Date; 25 | 26 | public class Usage { 27 | public long Time; 28 | public int Version; 29 | public int Protocol; 30 | public String DAddr; 31 | public int DPort; 32 | public int Uid; 33 | public long Sent; 34 | public long Received; 35 | 36 | private static DateFormat formatter = SimpleDateFormat.getDateTimeInstance(); 37 | 38 | @Override 39 | public String toString() { 40 | return formatter.format(new Date(Time).getTime()) + 41 | " v" + Version + " p" + Protocol + 42 | " " + DAddr + "/" + DPort + 43 | " uid " + Uid + 44 | " out " + Sent + " in " + Received; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /app/src/main/java/eu/faircode/netguard/Version.java: -------------------------------------------------------------------------------- 1 | package eu.faircode.netguard; 2 | 3 | /* 4 | This file is part of NetGuard. 5 | 6 | NetGuard is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | NetGuard is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with NetGuard. If not, see . 18 | 19 | Copyright 2015-2024 by Marcel Bokhorst (M66B) 20 | */ 21 | 22 | public class Version implements Comparable { 23 | 24 | private String version; 25 | 26 | public Version(String version) { 27 | this.version = version.replace("-beta", ""); 28 | } 29 | 30 | @Override 31 | public int compareTo(Version other) { 32 | String[] lhs = this.version.split("\\."); 33 | String[] rhs = other.version.split("\\."); 34 | int length = Math.max(lhs.length, rhs.length); 35 | for (int i = 0; i < length; i++) { 36 | int vLhs = (i < lhs.length ? Integer.parseInt(lhs[i]) : 0); 37 | int vRhs = (i < rhs.length ? Integer.parseInt(rhs[i]) : 0); 38 | if (vLhs < vRhs) 39 | return -1; 40 | if (vLhs > vRhs) 41 | return 1; 42 | } 43 | return 0; 44 | } 45 | 46 | @Override 47 | public String toString() { 48 | return version; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_add_circle_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_add_circle_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_attach_money_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_attach_money_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_attach_money_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_attach_money_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_check_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_check_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_upload_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_cloud_upload_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_delete_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_delete_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_equalizer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_equalizer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_equalizer_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_equalizer_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_error_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_error_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_expand_less_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_expand_less_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_expand_more_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_expand_more_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_filter_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_filter_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_filter_list_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_filter_list_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_hourglass_empty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_hourglass_empty_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_hourglass_empty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_hourglass_empty_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launch_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_launch_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launch_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_launch_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_lock_open_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_lock_open_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_lock_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_lock_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_lock_outline_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_lock_outline_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_pause_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_pause_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_pause_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_pause_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_perm_data_setting_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_perm_data_setting_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_perm_data_setting_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_perm_data_setting_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_play_arrow_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_play_arrow_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_play_arrow_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_play_arrow_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_security_color_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_security_color_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_security_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_security_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_security_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_security_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_shopping_cart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_shopping_cart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_shopping_cart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_shopping_cart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_signal_cellular_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_signal_cellular_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_signal_cellular_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_signal_cellular_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_signal_wifi_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_signal_wifi_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_signal_wifi_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_signal_wifi_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-hdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_add_circle_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_add_circle_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_attach_money_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_attach_money_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_attach_money_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_attach_money_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_check_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_check_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_upload_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_cloud_upload_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_delete_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_delete_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_equalizer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_equalizer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_equalizer_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_equalizer_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_error_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_error_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_expand_less_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_expand_less_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_expand_more_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_expand_more_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_filter_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_filter_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_filter_list_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_filter_list_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_hourglass_empty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_hourglass_empty_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_hourglass_empty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_hourglass_empty_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launch_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_launch_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launch_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_launch_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_lock_open_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_lock_open_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_lock_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_lock_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_lock_outline_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_lock_outline_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_pause_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_pause_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_pause_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_pause_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_perm_data_setting_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_perm_data_setting_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_perm_data_setting_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_perm_data_setting_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_play_arrow_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_play_arrow_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_play_arrow_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_play_arrow_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_security_color_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_security_color_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_security_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_security_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_security_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_security_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_shopping_cart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_shopping_cart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_shopping_cart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_shopping_cart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_signal_cellular_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_signal_cellular_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_signal_cellular_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_signal_cellular_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_signal_wifi_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_signal_wifi_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_signal_wifi_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_signal_wifi_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-mdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add_circle_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_add_circle_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_attach_money_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_attach_money_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_attach_money_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_attach_money_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_check_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_check_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_upload_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_cloud_upload_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_delete_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_delete_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_equalizer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_equalizer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_equalizer_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_equalizer_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_error_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_error_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_expand_less_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_expand_less_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_expand_more_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_expand_more_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_filter_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_filter_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_filter_list_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_filter_list_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_hourglass_empty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_hourglass_empty_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_hourglass_empty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_hourglass_empty_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launch_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_launch_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launch_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_launch_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_lock_open_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_lock_open_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_lock_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_lock_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_lock_outline_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_lock_outline_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_pause_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_pause_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_pause_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_pause_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_perm_data_setting_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_perm_data_setting_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_perm_data_setting_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_perm_data_setting_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_play_arrow_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_play_arrow_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_play_arrow_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_play_arrow_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_security_color_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_security_color_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_security_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_security_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_security_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_security_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_shopping_cart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_shopping_cart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_shopping_cart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_shopping_cart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_signal_cellular_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_signal_cellular_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_signal_cellular_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_signal_cellular_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_signal_wifi_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_signal_wifi_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_signal_wifi_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_signal_wifi_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xhdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add_circle_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_add_circle_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_attach_money_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_attach_money_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_attach_money_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_attach_money_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_check_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_check_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_upload_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_cloud_upload_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_delete_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_delete_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_equalizer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_equalizer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_equalizer_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_equalizer_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_error_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_error_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_expand_less_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_expand_less_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_expand_more_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_expand_more_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_filter_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_filter_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_filter_list_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_filter_list_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_hourglass_empty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_hourglass_empty_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_hourglass_empty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_hourglass_empty_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launch_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_launch_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launch_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_launch_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_lock_open_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_lock_open_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_lock_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_lock_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_lock_outline_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_lock_outline_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_pause_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_pause_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_pause_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_pause_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_perm_data_setting_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_perm_data_setting_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_perm_data_setting_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_perm_data_setting_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_play_arrow_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_play_arrow_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_play_arrow_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_play_arrow_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_security_color_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_security_color_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_security_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_security_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_security_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_security_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_shopping_cart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_shopping_cart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_shopping_cart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_shopping_cart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_signal_cellular_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_signal_cellular_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_signal_cellular_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_signal_cellular_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_signal_wifi_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_signal_wifi_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_signal_wifi_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_signal_wifi_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxhdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_add_circle_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_add_circle_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_attach_money_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_attach_money_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_attach_money_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_attach_money_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_check_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_check_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_upload_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_cloud_upload_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_delete_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_delete_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_equalizer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_equalizer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_equalizer_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_equalizer_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_error_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_error_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_expand_less_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_expand_less_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_expand_more_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_expand_more_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_download_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_file_download_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_filter_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_filter_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_filter_list_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_filter_list_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_hourglass_empty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_hourglass_empty_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_hourglass_empty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_hourglass_empty_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launch_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_launch_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launch_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_launch_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_lock_open_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_lock_open_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_lock_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_lock_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_lock_outline_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_lock_outline_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_pause_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_pause_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_pause_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_pause_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_perm_data_setting_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_perm_data_setting_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_perm_data_setting_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_perm_data_setting_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_play_arrow_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_play_arrow_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_play_arrow_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_play_arrow_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_security_color_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_security_color_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_security_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_security_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_security_white_24dp_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_security_white_24dp_60.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_shopping_cart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_shopping_cart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_shopping_cart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_shopping_cart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_signal_cellular_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_signal_cellular_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_signal_cellular_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_signal_cellular_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_signal_wifi_4_bar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_signal_wifi_4_bar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_signal_wifi_off_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_signal_wifi_off_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M66B/NetGuard/bdf74ecb8d2237cded0f842dbebe6ea332df05cc/app/src/main/res/drawable-xxxhdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_file_copy_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/expander_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/expander_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/host_allowed.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/host_blocked.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/lockdown.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/lockdown_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/lockdown_off.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/lockdown_on.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/other.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/other_off.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/other_off_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/other_on.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/other_on_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/screen_on.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/screen_on_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/twotone_info_outline_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/twotone_notifications_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/wifi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/wifi_off.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/wifi_off_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/wifi_on.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/wifi_on_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/layout/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 | 21 | 22 | 28 | 29 | 36 | 37 | 43 | 44 | 52 | 53 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /app/src/main/res/layout/actionlog.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/layout/actionmain.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | 14 | 23 | 24 | 32 | 33 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/layout/android.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 20 | 21 | 30 | 31 | 32 | 33 | 38 | 39 | 43 | 44 | 49 | 50 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /app/src/main/res/layout/challenge.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 15 | 16 | 22 | 23 | 27 | 28 | 37 | 38 | 44 | 45 | 46 | 52 | 53 | 57 | 58 | 65 | 66 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /app/src/main/res/layout/datasaving.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 18 | 19 | 28 | 29 | 30 | 35 | 36 | 40 | 41 | 46 | 47 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /app/src/main/res/layout/dns.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | 20 | 21 | 27 | 28 | 29 | 37 | 38 | 43 | 44 | 49 | 50 | 51 | 52 | 59 | 60 | 65 | 66 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /app/src/main/res/layout/doze.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 18 | 19 | 28 | 29 | 30 | 35 | 36 | 40 | 41 | 46 | 47 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /app/src/main/res/layout/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 18 | 19 | 28 | 29 | 30 | 35 | 36 | 40 | 41 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /app/src/main/res/layout/first.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 18 | 19 | 28 | 29 | 30 | 35 | 36 | 40 | 41 | 47 | 48 | 55 | 56 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /app/src/main/res/layout/forward.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 17 | 18 | 23 | 24 | 33 | 34 | 41 | 42 | 51 | 52 | 53 | 54 | 61 | 62 | -------------------------------------------------------------------------------- /app/src/main/res/layout/forwardapproval.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 18 | 19 | 28 | 29 | 30 | 37 | 38 | 42 | 43 |