├── .github
└── ISSUE_TEMPLATE.md
├── .gitignore
├── NOTICE.txt
├── PRIVACY.md
├── README.md
├── build.gradle
├── etc
├── ic_launcher-web.png
├── mapping-1.0.10.txt
├── mapping-1.0.11.txt
├── mapping-1.0.12.txt
├── mapping-1.0.13.txt
├── mapping-1.0.14.txt
├── mapping-1.0.15.txt
├── mapping-1.0.16.txt
├── mapping-1.0.17.txt
├── mapping-1.0.4.txt
├── mapping-1.0.5.txt
├── mapping-1.0.6.txt
├── mapping-1.0.7.txt
├── mapping-1.0.9.txt
├── mapping-1.1.0.txt
├── mapping-1.10.2.txt
├── mapping-1.11.0.txt
├── mapping-1.11.1.txt
├── mapping-1.12.0.txt
├── mapping-1.12.1.txt
├── mapping-1.12.2.txt
├── mapping-1.12.3.txt
├── mapping-1.13.0.txt
├── mapping-1.14.0.txt
├── mapping-1.14.1.txt
├── mapping-1.14.2.txt
├── mapping-1.15.0.txt
├── mapping-1.15.1.txt
├── mapping-1.16.0.txt
├── mapping-1.17.0.txt
├── mapping-1.18.0.txt
├── mapping-1.2.0.apk
├── mapping-1.2.1.txt
├── mapping-1.2.3.txt
├── mapping-1.3.0.txt
├── mapping-1.3.1.txt
├── mapping-1.5.0.txt
├── mapping-1.5.1.txt
├── mapping-1.5.2.txt
├── mapping-1.5.3.txt
├── mapping-1.6.0.txt
├── mapping-1.6.1.txt
├── mapping-1.7.0.txt
├── mapping-1.8.0.txt
├── mapping-1.9.0.txt
├── mapping-foss-1.18.2.txt
├── mapping-foss-1.18.3.txt
├── mapping-foss-1.19.0.txt
├── mapping-foss-1.20.0.txt
├── mapping-foss-1.20.1.txt
├── mapping-foss-1.21.0.txt
├── mapping-foss-1.22.0.txt
├── mapping-foss-1.22.1.txt
├── mapping-foss-1.23.0.txt
├── mapping-foss-1.23.1.txt
├── mapping-foss-1.24.0.txt
├── mapping-foss-1.24.1.txt
├── mapping-proprietary-1.18.2.txt
├── mapping-proprietary-1.18.3.txt
├── mapping-proprietary-1.19.0.txt
├── mapping-proprietary-1.20.0.txt
├── mapping-proprietary-1.20.1.txt
├── mapping-proprietary-1.21.0.txt
├── mapping-proprietary-1.22.0.txt
├── mapping-proprietary-1.22.1.txt
├── mapping-proprietary-1.23.0.txt
├── mapping-proprietary-1.23.1.txt
├── mapping-proprietary-1.24.0.txt
├── mapping-proprietary-1.24.1.txt
├── stats
│ ├── crashes.csv
│ ├── installs_by_user.csv
│ └── ratings.csv
└── wirelessorange.svg
├── getapkfromgithub.png
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── networkmonitor
├── build.gradle
├── proguard-project.txt
└── src
│ ├── debug
│ └── res
│ │ ├── values-es
│ │ └── strings.xml
│ │ ├── values-fr
│ │ └── strings.xml
│ │ └── values
│ │ └── strings.xml
│ └── main
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── email_help-es.html
│ ├── email_help-fr.html
│ ├── email_help.html
│ ├── netmon.css
│ ├── speed_test_about-es.html
│ ├── speed_test_about-fr.html
│ └── speed_test_about.html
│ ├── java
│ └── ca
│ │ └── rmen
│ │ └── android
│ │ └── networkmonitor
│ │ ├── Constants.java
│ │ ├── app
│ │ ├── NetMonApplication.java
│ │ ├── Theme.java
│ │ ├── about
│ │ │ ├── AboutActivity.java
│ │ │ └── LicenseActivity.java
│ │ ├── bus
│ │ │ └── NetMonBus.java
│ │ ├── dbops
│ │ │ ├── ProgressListener.java
│ │ │ ├── backend
│ │ │ │ ├── DBOpIntentService.java
│ │ │ │ ├── DBOperation.java
│ │ │ │ ├── NotificationProgressListener.java
│ │ │ │ ├── clean
│ │ │ │ │ ├── DBCompress.java
│ │ │ │ │ └── DBPurge.java
│ │ │ │ ├── export
│ │ │ │ │ ├── CSVExport.java
│ │ │ │ │ ├── DBExport.java
│ │ │ │ │ ├── ExcelExport.java
│ │ │ │ │ ├── FileExport.java
│ │ │ │ │ ├── Formatter.java
│ │ │ │ │ ├── FormatterFactory.java
│ │ │ │ │ ├── GnuplotExport.java
│ │ │ │ │ ├── HTMLExport.java
│ │ │ │ │ ├── SummaryExport.java
│ │ │ │ │ └── TableFileExport.java
│ │ │ │ └── imp0rt
│ │ │ │ │ └── DBImport.java
│ │ │ └── ui
│ │ │ │ ├── GnuplotSettingsActivity.java
│ │ │ │ └── Share.java
│ │ ├── dialog
│ │ │ ├── ChoiceDialogFragment.java
│ │ │ ├── ConfirmDialogFragment.java
│ │ │ ├── DialogFragmentFactory.java
│ │ │ ├── InfoDialogFragment.java
│ │ │ └── PreferenceDialog.java
│ │ ├── email
│ │ │ ├── EmailHelpActivity.java
│ │ │ ├── EmailPreferences.java
│ │ │ ├── EmailPreferencesActivity.java
│ │ │ ├── Emailer.java
│ │ │ └── ReportEmailer.java
│ │ ├── log
│ │ │ └── LogActivity.java
│ │ ├── main
│ │ │ ├── MainActivity.java
│ │ │ └── WarningDialogFragment.java
│ │ ├── prefs
│ │ │ ├── AdvancedPreferencesActivity.java
│ │ │ ├── FilterColumnActivity.java
│ │ │ ├── FilterColumnListFragment.java
│ │ │ ├── FilterPreferences.java
│ │ │ ├── NetMonPreferenceFragmentCompat.java
│ │ │ ├── NetMonPreferences.java
│ │ │ ├── PreferencesMigrator.java
│ │ │ ├── RingtonePreferenceSummaryUpdater.java
│ │ │ ├── SelectFieldsActivity.java
│ │ │ ├── SelectedFieldsAdapter.java
│ │ │ ├── SettingsExportImport.java
│ │ │ ├── SortPreferences.java
│ │ │ └── hack
│ │ │ │ ├── MultiSelectListPreferenceDialogFragmentCompat.java
│ │ │ │ ├── PasswordPreference.java
│ │ │ │ ├── PasswordPreferenceDialogFragmentCompat.java
│ │ │ │ └── PreferenceFragmentCompatHack.java
│ │ ├── savetostorage
│ │ │ ├── SaveToStorage.java
│ │ │ ├── SaveToStorageActivity.java
│ │ │ └── SaveToStorageService.java
│ │ ├── service
│ │ │ ├── BootReceiver.java
│ │ │ ├── NetMonNotification.java
│ │ │ ├── NetMonService.java
│ │ │ ├── datasources
│ │ │ │ ├── ActiveNetworkInfoDataSource.java
│ │ │ │ ├── BatteryDataSource.java
│ │ │ │ ├── CellSignalStrengthDataSource.java
│ │ │ │ ├── ConnectionTesterDataSource.java
│ │ │ │ ├── ConsumingAppDataSource.java
│ │ │ │ ├── DownloadSpeedTestDataSource.java
│ │ │ │ ├── MobileDataConnectionDataSource.java
│ │ │ │ ├── NetMonDataSource.java
│ │ │ │ ├── NetMonDataSources.java
│ │ │ │ ├── NetworkInterfaceDataSource.java
│ │ │ │ ├── SIMDataSource.java
│ │ │ │ ├── ServiceStateDataSource.java
│ │ │ │ ├── UploadSpeedTestDataSource.java
│ │ │ │ └── WiFiDataSource.java
│ │ │ └── scheduler
│ │ │ │ ├── AlarmManagerScheduler.java
│ │ │ │ ├── ExecutorServiceScheduler.java
│ │ │ │ ├── NetworkChangeScheduler.java
│ │ │ │ └── Scheduler.java
│ │ └── speedtest
│ │ │ ├── SpeedTestAboutActivity.java
│ │ │ ├── SpeedTestDownload.java
│ │ │ ├── SpeedTestDownloadConfig.java
│ │ │ ├── SpeedTestExecutionDecider.java
│ │ │ ├── SpeedTestPreferences.java
│ │ │ ├── SpeedTestPreferencesActivity.java
│ │ │ ├── SpeedTestResult.java
│ │ │ ├── SpeedTestUpload.java
│ │ │ └── SpeedTestUploadConfig.java
│ │ ├── provider
│ │ ├── ConnectionTestStatsColumns.java
│ │ ├── NetMonColumns.java
│ │ ├── NetMonDatabase.java
│ │ ├── NetMonProvider.java
│ │ └── UniqueValuesColumns.java
│ │ └── util
│ │ ├── AndroidConstantsUtil.java
│ │ ├── FileUtil.java
│ │ ├── IoUtil.java
│ │ ├── NetMonSignalStrength.java
│ │ ├── PermissionUtil.java
│ │ ├── TelephonyUtil.java
│ │ └── TextUtil.java
│ └── res
│ ├── anim
│ └── rotate.xml
│ ├── drawable-hdpi
│ ├── about_bg_bitmap.png
│ ├── ic_about_bug.png
│ ├── ic_about_contributions.png
│ ├── ic_about_libraries.png
│ ├── ic_about_rate.png
│ ├── ic_about_source_code.png
│ ├── ic_action_cell_id_format.png
│ ├── ic_action_clear.png
│ ├── ic_action_filter.png
│ ├── ic_action_logs.png
│ ├── ic_action_profile_location.png
│ ├── ic_action_profile_mobile.png
│ ├── ic_action_profile_wifi.png
│ ├── ic_action_refresh.png
│ ├── ic_action_select_all.png
│ ├── ic_action_select_fields.png
│ ├── ic_action_select_none.png
│ ├── ic_action_share.png
│ ├── ic_action_stop.png
│ ├── ic_alert.png
│ ├── ic_device_sd_storage.png
│ ├── ic_pref_about.png
│ ├── ic_pref_cell_id_format.png
│ ├── ic_pref_clear.png
│ ├── ic_pref_compress.png
│ ├── ic_pref_db_record_count.png
│ ├── ic_pref_email.png
│ ├── ic_pref_email_password.png
│ ├── ic_pref_email_recipients.png
│ ├── ic_pref_email_report_formats.png
│ ├── ic_pref_email_security.png
│ ├── ic_pref_email_user.png
│ ├── ic_pref_enable_connection_test.png
│ ├── ic_pref_enable_service.png
│ ├── ic_pref_export.png
│ ├── ic_pref_folder.png
│ ├── ic_pref_import.png
│ ├── ic_pref_location_fetching_strategy.png
│ ├── ic_pref_notification_enabled.png
│ ├── ic_pref_notification_priority.png
│ ├── ic_pref_notification_ringtone.png
│ ├── ic_pref_question.png
│ ├── ic_pref_scheduler.png
│ ├── ic_pref_select_fields.png
│ ├── ic_pref_server.png
│ ├── ic_pref_settings.png
│ ├── ic_pref_share.png
│ ├── ic_pref_show_log.png
│ ├── ic_pref_speed_test.png
│ ├── ic_pref_theme.png
│ ├── ic_pref_update_interval.png
│ ├── ic_pref_url.png
│ ├── ic_pref_wake_interval.png
│ ├── ic_stat_action_done.png
│ ├── ic_stat_db_op_compress.png
│ ├── ic_stat_db_op_delete.png
│ ├── ic_stat_db_op_export.png
│ ├── ic_stat_db_op_import.png
│ ├── ic_stat_service_running.png
│ ├── ic_stat_warning.png
│ ├── netmon_list_focused_holo.9.png
│ ├── netmon_list_longpressed_holo.9.png
│ ├── netmon_list_pressed_holo_light.9.png
│ └── netmon_list_selector_disabled_holo_light.9.png
│ ├── drawable-ldpi
│ ├── ic_action_clear.png
│ └── ic_action_refresh.png
│ ├── drawable-mdpi
│ ├── ic_about_bug.png
│ ├── ic_about_contributions.png
│ ├── ic_about_libraries.png
│ ├── ic_about_rate.png
│ ├── ic_about_source_code.png
│ ├── ic_action_cell_id_format.png
│ ├── ic_action_clear.png
│ ├── ic_action_filter.png
│ ├── ic_action_logs.png
│ ├── ic_action_profile_location.png
│ ├── ic_action_profile_mobile.png
│ ├── ic_action_profile_wifi.png
│ ├── ic_action_refresh.png
│ ├── ic_action_select_all.png
│ ├── ic_action_select_fields.png
│ ├── ic_action_select_none.png
│ ├── ic_action_share.png
│ ├── ic_action_stop.png
│ ├── ic_alert.png
│ ├── ic_device_sd_storage.png
│ ├── ic_pref_about.png
│ ├── ic_pref_cell_id_format.png
│ ├── ic_pref_clear.png
│ ├── ic_pref_compress.png
│ ├── ic_pref_db_record_count.png
│ ├── ic_pref_email.png
│ ├── ic_pref_email_password.png
│ ├── ic_pref_email_recipients.png
│ ├── ic_pref_email_report_formats.png
│ ├── ic_pref_email_security.png
│ ├── ic_pref_email_user.png
│ ├── ic_pref_enable_connection_test.png
│ ├── ic_pref_enable_service.png
│ ├── ic_pref_export.png
│ ├── ic_pref_folder.png
│ ├── ic_pref_import.png
│ ├── ic_pref_location_fetching_strategy.png
│ ├── ic_pref_notification_enabled.png
│ ├── ic_pref_notification_priority.png
│ ├── ic_pref_notification_ringtone.png
│ ├── ic_pref_question.png
│ ├── ic_pref_scheduler.png
│ ├── ic_pref_select_fields.png
│ ├── ic_pref_server.png
│ ├── ic_pref_settings.png
│ ├── ic_pref_share.png
│ ├── ic_pref_show_log.png
│ ├── ic_pref_speed_test.png
│ ├── ic_pref_theme.png
│ ├── ic_pref_update_interval.png
│ ├── ic_pref_url.png
│ ├── ic_pref_wake_interval.png
│ ├── ic_stat_action_done.png
│ ├── ic_stat_db_op_compress.png
│ ├── ic_stat_db_op_delete.png
│ ├── ic_stat_db_op_export.png
│ ├── ic_stat_db_op_import.png
│ ├── ic_stat_service_running.png
│ ├── ic_stat_warning.png
│ ├── netmon_list_focused_holo.9.png
│ ├── netmon_list_longpressed_holo.9.png
│ ├── netmon_list_pressed_holo_light.9.png
│ └── netmon_list_selector_disabled_holo_light.9.png
│ ├── drawable-xhdpi
│ ├── ic_about_bug.png
│ ├── ic_about_contributions.png
│ ├── ic_about_libraries.png
│ ├── ic_about_rate.png
│ ├── ic_about_source_code.png
│ ├── ic_action_cell_id_format.png
│ ├── ic_action_clear.png
│ ├── ic_action_filter.png
│ ├── ic_action_logs.png
│ ├── ic_action_profile_location.png
│ ├── ic_action_profile_mobile.png
│ ├── ic_action_profile_wifi.png
│ ├── ic_action_refresh.png
│ ├── ic_action_select_all.png
│ ├── ic_action_select_fields.png
│ ├── ic_action_select_none.png
│ ├── ic_action_share.png
│ ├── ic_action_stop.png
│ ├── ic_alert.png
│ ├── ic_device_sd_storage.png
│ ├── ic_pref_about.png
│ ├── ic_pref_cell_id_format.png
│ ├── ic_pref_clear.png
│ ├── ic_pref_compress.png
│ ├── ic_pref_db_record_count.png
│ ├── ic_pref_email.png
│ ├── ic_pref_email_password.png
│ ├── ic_pref_email_recipients.png
│ ├── ic_pref_email_report_formats.png
│ ├── ic_pref_email_security.png
│ ├── ic_pref_email_user.png
│ ├── ic_pref_enable_connection_test.png
│ ├── ic_pref_enable_service.png
│ ├── ic_pref_export.png
│ ├── ic_pref_folder.png
│ ├── ic_pref_import.png
│ ├── ic_pref_location_fetching_strategy.png
│ ├── ic_pref_notification_enabled.png
│ ├── ic_pref_notification_priority.png
│ ├── ic_pref_notification_ringtone.png
│ ├── ic_pref_question.png
│ ├── ic_pref_scheduler.png
│ ├── ic_pref_select_fields.png
│ ├── ic_pref_server.png
│ ├── ic_pref_settings.png
│ ├── ic_pref_share.png
│ ├── ic_pref_show_log.png
│ ├── ic_pref_speed_test.png
│ ├── ic_pref_theme.png
│ ├── ic_pref_update_interval.png
│ ├── ic_pref_url.png
│ ├── ic_pref_wake_interval.png
│ ├── ic_stat_action_done.png
│ ├── ic_stat_db_op_compress.png
│ ├── ic_stat_db_op_delete.png
│ ├── ic_stat_db_op_export.png
│ ├── ic_stat_db_op_import.png
│ ├── ic_stat_service_running.png
│ ├── ic_stat_warning.png
│ ├── netmon_list_focused_holo.9.png
│ ├── netmon_list_longpressed_holo.9.png
│ ├── netmon_list_pressed_holo_light.9.png
│ └── netmon_list_selector_disabled_holo_light.9.png
│ ├── drawable-xxhdpi
│ ├── ic_about_bug.png
│ ├── ic_about_contributions.png
│ ├── ic_about_rate.png
│ ├── ic_about_source_code.png
│ ├── ic_action_clear.png
│ ├── ic_action_filter.png
│ ├── ic_action_logs.png
│ ├── ic_action_profile_location.png
│ ├── ic_action_profile_mobile.png
│ ├── ic_action_profile_wifi.png
│ ├── ic_action_refresh.png
│ ├── ic_action_select_all.png
│ ├── ic_action_select_fields.png
│ ├── ic_action_select_none.png
│ ├── ic_action_share.png
│ ├── ic_action_stop.png
│ ├── ic_alert.png
│ ├── ic_device_sd_storage.png
│ ├── ic_pref_about.png
│ ├── ic_pref_cell_id_format.png
│ ├── ic_pref_clear.png
│ ├── ic_pref_compress.png
│ ├── ic_pref_db_record_count.png
│ ├── ic_pref_email.png
│ ├── ic_pref_email_password.png
│ ├── ic_pref_email_recipients.png
│ ├── ic_pref_email_report_formats.png
│ ├── ic_pref_email_security.png
│ ├── ic_pref_email_user.png
│ ├── ic_pref_enable_connection_test.png
│ ├── ic_pref_enable_service.png
│ ├── ic_pref_export.png
│ ├── ic_pref_folder.png
│ ├── ic_pref_import.png
│ ├── ic_pref_location_fetching_strategy.png
│ ├── ic_pref_notification_enabled.png
│ ├── ic_pref_notification_priority.png
│ ├── ic_pref_notification_ringtone.png
│ ├── ic_pref_question.png
│ ├── ic_pref_scheduler.png
│ ├── ic_pref_select_fields.png
│ ├── ic_pref_server.png
│ ├── ic_pref_settings.png
│ ├── ic_pref_share.png
│ ├── ic_pref_show_log.png
│ ├── ic_pref_speed_test.png
│ ├── ic_pref_theme.png
│ ├── ic_pref_update_interval.png
│ ├── ic_pref_url.png
│ ├── ic_pref_wake_interval.png
│ ├── ic_stat_action_done.png
│ ├── ic_stat_db_op_compress.png
│ ├── ic_stat_db_op_delete.png
│ ├── ic_stat_db_op_export.png
│ ├── ic_stat_db_op_import.png
│ ├── ic_stat_warning.png
│ ├── netmon_list_focused_holo.9.png
│ ├── netmon_list_longpressed_holo.9.png
│ ├── netmon_list_pressed_holo_light.9.png
│ └── netmon_list_selector_disabled_holo_light.9.png
│ ├── drawable-xxxhdpi
│ ├── ic_action_clear.png
│ ├── ic_action_filter.png
│ ├── ic_action_profile_location.png
│ ├── ic_action_profile_mobile.png
│ ├── ic_action_profile_wifi.png
│ ├── ic_action_refresh.png
│ ├── ic_action_select_all.png
│ ├── ic_action_select_none.png
│ ├── ic_action_share.png
│ ├── ic_alert.png
│ ├── ic_device_sd_storage.png
│ ├── ic_pref_about.png
│ ├── ic_pref_cell_id_format.png
│ ├── ic_pref_clear.png
│ ├── ic_pref_compress.png
│ ├── ic_pref_db_record_count.png
│ ├── ic_pref_email.png
│ ├── ic_pref_email_password.png
│ ├── ic_pref_email_recipients.png
│ ├── ic_pref_email_report_formats.png
│ ├── ic_pref_email_security.png
│ ├── ic_pref_email_user.png
│ ├── ic_pref_enable_connection_test.png
│ ├── ic_pref_enable_service.png
│ ├── ic_pref_export.png
│ ├── ic_pref_folder.png
│ ├── ic_pref_import.png
│ ├── ic_pref_location_fetching_strategy.png
│ ├── ic_pref_notification_enabled.png
│ ├── ic_pref_notification_priority.png
│ ├── ic_pref_notification_ringtone.png
│ ├── ic_pref_question.png
│ ├── ic_pref_scheduler.png
│ ├── ic_pref_select_fields.png
│ ├── ic_pref_server.png
│ ├── ic_pref_settings.png
│ ├── ic_pref_share.png
│ ├── ic_pref_show_log.png
│ ├── ic_pref_speed_test.png
│ ├── ic_pref_theme.png
│ ├── ic_pref_update_interval.png
│ ├── ic_pref_url.png
│ ├── ic_pref_wake_interval.png
│ ├── ic_stat_action_done.png
│ ├── ic_stat_db_op_compress.png
│ ├── ic_stat_db_op_delete.png
│ ├── ic_stat_db_op_export.png
│ ├── ic_stat_db_op_import.png
│ └── ic_stat_warning.png
│ ├── drawable
│ ├── about_bg.xml
│ ├── ic_about_legal.xml
│ ├── ic_about_privacy.xml
│ ├── ic_battery.xml
│ ├── ic_data.xml
│ ├── netmon_list_selector_background_transition_holo_light.xml
│ └── netmon_list_selector_holo_light.xml
│ ├── layout
│ ├── about.xml
│ ├── activity_email_help.xml
│ ├── activity_speed_test_about.xml
│ ├── field_item.xml
│ ├── filter_columns.xml
│ ├── gnuplot_settings.xml
│ ├── license.xml
│ ├── log.xml
│ ├── ok_cancel_bar.xml
│ ├── refresh_icon.xml
│ ├── select_fields.xml
│ └── warning_dialog.xml
│ ├── menu
│ ├── filter_columns.xml
│ ├── log.xml
│ └── select_fields.xml
│ ├── mipmap-anydpi-v26
│ └── ic_launcher.xml
│ ├── mipmap-hdpi
│ ├── ic_launcher.png
│ └── ic_launcher_foreground.png
│ ├── mipmap-mdpi
│ ├── ic_launcher.png
│ └── ic_launcher_foreground.png
│ ├── mipmap-xhdpi
│ ├── ic_launcher.png
│ └── ic_launcher_foreground.png
│ ├── mipmap-xxhdpi
│ ├── ic_launcher.png
│ └── ic_launcher_foreground.png
│ ├── mipmap-xxxhdpi
│ └── ic_launcher_foreground.png
│ ├── raw
│ └── licenses.xml
│ ├── values-es
│ ├── strings.xml
│ ├── strings_columnnames.xml
│ ├── strings_compress.xml
│ ├── strings_email_preferences.xml
│ ├── strings_export.xml
│ ├── strings_import.xml
│ ├── strings_preferences.xml
│ ├── strings_purge.xml
│ └── strings_speed_test_preferences.xml
│ ├── values-fr
│ ├── strings.xml
│ ├── strings_columnnames.xml
│ ├── strings_compress.xml
│ ├── strings_email_preferences.xml
│ ├── strings_export.xml
│ ├── strings_import.xml
│ ├── strings_preferences.xml
│ ├── strings_purge.xml
│ └── strings_speed_test_preferences.xml
│ ├── values-night
│ ├── colors_netmon.xml
│ └── donottranslate_strings_export_html.xml
│ ├── values-sw600dp
│ └── dimens.xml
│ ├── values-sw720dp-land
│ └── dimens.xml
│ ├── values-v17
│ └── donottranslate_arrays_dbcolumns.xml
│ ├── values-v19
│ └── strings_export.xml
│ ├── values-v21
│ └── themes.xml
│ ├── values-v23
│ ├── donottranslate_arrays_dbcolumns.xml
│ └── themes.xml
│ ├── values-v24
│ └── donottranslate_arrays_dbcolumns.xml
│ ├── values
│ ├── arrays.xml
│ ├── colors_netmon.xml
│ ├── dimens.xml
│ ├── donottranslate_arrays_dbcolumns.xml
│ ├── donottranslate_license.xml
│ ├── donottranslate_strings_export_gnuplot.xml
│ ├── donottranslate_strings_export_html.xml
│ ├── strings.xml
│ ├── strings_columnnames.xml
│ ├── strings_compress.xml
│ ├── strings_email_preferences.xml
│ ├── strings_export.xml
│ ├── strings_import.xml
│ ├── strings_preferences.xml
│ ├── strings_purge.xml
│ ├── strings_speed_test_preferences.xml
│ └── themes.xml
│ └── xml
│ ├── adv_preferences.xml
│ ├── backup_scheme.xml
│ ├── email_preferences.xml
│ ├── export_gnuplot_preferences.xml
│ ├── file_paths.xml
│ ├── preferences.xml
│ └── speed_test_preferences.xml
├── settings.gradle
└── signing.properties.template
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Description:
2 | ------------
3 |
4 | Steps to reproduce:
5 | -------------------
6 |
7 | Stacktrace (if reporting a crash):
8 | ----------------------------------
9 |
10 | Environment:
11 | ------------
12 | * Android version:
13 | * Device model:
14 | * App version:
15 | * App downloaded from (play store, f-droid, github, other):
16 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | bin
3 | gen
4 | local.properties
5 | target/
6 | build/
7 | networkmonitor/build
8 | .idea
9 | .gradle
10 | *.iml
11 | networkmonitor/*.iml
12 | signing.properties
13 | etc/*.apk
14 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Network Monitor
2 | ===============
3 |
4 | A network monitor tool for Android that executes an http GET to google.com every x seconds and logs the results into a file.
5 |
6 | Credits
7 | -------
8 |
9 | This project was initially created by Benoit 'BoD' Lubek (BoD@JRAF.org / http://github.com/BoD),
10 | but most of the current code was contributed by Carmen Alvarez (c@rmen.ca / http://github.com/caarmen).
11 |
12 | Licence
13 | -------
14 |
15 | Licensed under the Apache License, Version 2.0 (the "License");
16 | you may not use this file except in compliance with the License.
17 | You may obtain a copy of the License at
18 |
19 | http://www.apache.org/licenses/LICENSE-2.0
20 |
21 | Unless required by applicable law or agreed to in writing, software
22 | distributed under the License is distributed on an "AS IS" BASIS,
23 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 | See the License for the specific language governing permissions and
25 | limitations under the License.
26 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2015-2020 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
25 | buildscript {
26 | repositories {
27 | google()
28 | jcenter()
29 | }
30 | dependencies {
31 | classpath 'com.android.tools.build:gradle:3.6.2'
32 | classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
33 | configurations.classpath.exclude group: 'com.android.tools.external.lombok'
34 | }
35 | }
36 |
37 | // Run "./gradlew wrapper" to update the wrapper
38 | wrapper {
39 | gradleVersion = '6.3'
40 | distributionType = Wrapper.DistributionType.ALL
41 | }
42 |
43 | allprojects {
44 | repositories {
45 | jcenter()
46 | google()
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/etc/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/etc/ic_launcher-web.png
--------------------------------------------------------------------------------
/getapkfromgithub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/getapkfromgithub.png
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | android.enableJetifier=true
2 | android.useAndroidX=true
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/networkmonitor/src/debug/res/values-es/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 | Network Monitor Debug
28 |
29 |
--------------------------------------------------------------------------------
/networkmonitor/src/debug/res/values-fr/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 | Network Monitor Debug
28 |
29 |
--------------------------------------------------------------------------------
/networkmonitor/src/debug/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 | Network Monitor Debug
28 |
29 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/assets/email_help.html:
--------------------------------------------------------------------------------
1 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | E-mail help
31 | I'm not receiving my e-mails
32 | If you have configured Network Monitor to send yourself reports by e-mail using a Gmail account, you may need to configure Gmail to grant Network Monitor SMTP access.
33 |
34 |
35 | There are two ways to allow Network Monitor to send mail using your Gmail account.
36 | Recommended: 2-step verification
37 | Enable 2-step verification, and then generate an app password which you can enter in Network Monitor instead of your Gmail password. You can do this here:
38 |
43 |
44 | Less secure:
45 | If you haven't enabled 2-step verification in Gmail, you can allow all "less secure" apps to access Gmail. In this case, you enter your Gmail password inside Network Monitor.
46 |
47 |
48 | Please note that enabling access to less secure applications can make your Gmail account more vulnerable.
49 |
50 |
51 | Gmail less secure apps settings
52 |
53 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/assets/netmon.css:
--------------------------------------------------------------------------------
1 | /**
2 | This source is part of the
3 | _____ ___ ____
4 | __ / / _ \/ _ | / __/___ _______ _
5 | / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | /___/
8 | repository.
9 |
10 | Copyright (C) 2016 Carmen Alvarez (c@rmen.ca)
11 |
12 | Licensed under the Apache License, Version 2.0 (the "License");
13 | you may not use this file except in compliance with the License.
14 | You may obtain a copy of the License at
15 |
16 | http://www.apache.org/licenses/LICENSE-2.0
17 |
18 | Unless required by applicable law or agreed to in writing, software
19 | distributed under the License is distributed on an "AS IS" BASIS,
20 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | See the License for the specific language governing permissions and
22 | limitations under the License.
23 | */
24 | body {
25 | background-color: #fff;
26 | }
27 | h1 {
28 | text-align: center;
29 | background-color: #ffffe1;
30 | color: #fd8900;
31 | border-top: 1px #fd8900 solid;
32 | border-bottom: 1px #fd8900 solid;
33 | }
34 | h2 {
35 | color: #fd8900;
36 | }
37 | h3 {
38 | color: #fd8900;
39 | }
40 | a:link, a:visited {
41 | color: #fd8900;
42 | }
43 | a:hover, a:active {
44 | color: #886600;
45 | }
46 |
47 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/Constants.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2013 Benoit 'BoD' Lubek (BoD@JRAF.org)
11 | * Copyright (C) 2013-2015 Carmen Alvarez (c@rmen.ca)
12 | *
13 | * Licensed under the Apache License, Version 2.0 (the "License");
14 | * you may not use this file except in compliance with the License.
15 | * You may obtain a copy of the License at
16 | *
17 | * http://www.apache.org/licenses/LICENSE-2.0
18 | *
19 | * Unless required by applicable law or agreed to in writing, software
20 | * distributed under the License is distributed on an "AS IS" BASIS,
21 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 | * See the License for the specific language governing permissions and
23 | * limitations under the License.
24 | */
25 | package ca.rmen.android.networkmonitor;
26 |
27 |
28 | public class Constants {
29 | public static final String TAG = "NetMon/";
30 |
31 | public static final String CONNECTION_TEST_PASS = "PASS";
32 | public static final String CONNECTION_TEST_FAIL = "FAIL";
33 | public static final String CONNECTION_TEST_SLOW = "SLOW";
34 | public static final String DATA_STATE_CONNECTED = "CONNECTED";
35 |
36 | public enum ConnectionType {
37 | GSM, CDMA, WIFI
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/NetMonApplication.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2014 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app;
25 |
26 | import android.app.Application;
27 |
28 | public class NetMonApplication extends Application {
29 |
30 | @Override
31 | public void onCreate() {
32 | super.onCreate();
33 | Theme.setThemeFromSettings(this);
34 | }
35 |
36 | }
37 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/about/LicenseActivity.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2016 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.about;
25 |
26 | import android.os.Bundle;
27 | import androidx.appcompat.app.AppCompatActivity;
28 |
29 | import ca.rmen.android.networkmonitor.R;
30 |
31 | public class LicenseActivity extends AppCompatActivity {
32 |
33 | @Override
34 | protected void onCreate(Bundle savedInstanceState) {
35 | super.onCreate(savedInstanceState);
36 | setContentView(R.layout.license);
37 | }
38 |
39 | }
40 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/dbops/ProgressListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.dbops;
25 |
26 | /**
27 | * This is currently used by the {@link ca.rmen.android.networkmonitor.app.dbops.backend.DBOpIntentService} to execute the long task in
28 | * the background while showing progress in a notification.
29 | *
30 | * If we find we need other long tasks not related to db operations, requiring a
31 | * progress dialog, we may move this interface to another package.
32 | */
33 | public interface ProgressListener {
34 | void onProgress(int progress, int max);
35 | void onWarning(String message);
36 | void onComplete(String message);
37 | void onError(String message);
38 | }
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/dbops/backend/DBOperation.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.dbops.backend;
25 |
26 | import androidx.annotation.Nullable;
27 |
28 | import ca.rmen.android.networkmonitor.app.dbops.ProgressListener;
29 |
30 | /**
31 | * Performs a long-running, cancelable task (currently reading/writing on the DB).
32 | */
33 | public interface DBOperation {
34 |
35 | /**
36 | * Execute the long-running operation. This should be called on a background thread.
37 | * @param listener if given, must be notified of the progress of the task.
38 | */
39 | void execute(@Nullable ProgressListener listener);
40 |
41 | /**
42 | * Cancel the long-running operation. If it is in progress, it should finish as soon as possible.
43 | */
44 | void cancel();
45 | }
46 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/dbops/backend/export/Formatter.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2013-2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.dbops.backend.export;
25 |
26 | import android.database.Cursor;
27 |
28 | /**
29 | * Formats recorded values for exporting
30 | */
31 | public interface Formatter {
32 |
33 | /**
34 | * @return a non-null String representation of the value at the given column and current Cursor row.
35 | */
36 | String format(Cursor c, int columnIndex);
37 | }
38 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/email/EmailHelpActivity.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2016 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.email;
25 |
26 | import android.os.Bundle;
27 | import androidx.appcompat.app.AppCompatActivity;
28 | import android.view.View;
29 | import android.webkit.WebView;
30 |
31 | import ca.rmen.android.networkmonitor.R;
32 |
33 | /**
34 | * Activity which shows an HTML help for email.
35 | */
36 | public class EmailHelpActivity extends AppCompatActivity {
37 |
38 | @Override
39 | protected void onCreate(Bundle savedInstanceState) {
40 | super.onCreate(savedInstanceState);
41 | setContentView(R.layout.activity_email_help);
42 | WebView wv = findViewById(R.id.webview);
43 | wv.setBackgroundColor(0);
44 | wv.getSettings().setDefaultFontSize(14);
45 | wv.loadUrl(getString(R.string.email_help_file));
46 | }
47 |
48 | @SuppressWarnings("UnusedParameters")
49 | public void okClicked(View view) {
50 | finish();
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/prefs/hack/PasswordPreference.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.prefs.hack;
25 |
26 | import android.content.Context;
27 | import androidx.preference.EditTextPreference;
28 | import android.util.AttributeSet;
29 |
30 |
31 | public class PasswordPreference extends EditTextPreference {
32 | public PasswordPreference(Context context) {
33 | super(context);
34 | }
35 |
36 | public PasswordPreference(Context context, AttributeSet attrs) {
37 | super(context, attrs);
38 | }
39 |
40 | public PasswordPreference(Context context, AttributeSet attrs, int defStyleAttr) {
41 | super(context, attrs, defStyleAttr);
42 | }
43 |
44 | public PasswordPreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
45 | super(context, attrs, defStyleAttr, defStyleRes);
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/prefs/hack/PasswordPreferenceDialogFragmentCompat.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.prefs.hack;
25 |
26 | import android.os.Bundle;
27 | import androidx.preference.EditTextPreferenceDialogFragmentCompat;
28 | import android.text.InputType;
29 | import android.view.View;
30 | import android.widget.EditText;
31 |
32 | /**
33 | * Hack to set the input type of an EditTextPreference to "password".
34 | */
35 | public class PasswordPreferenceDialogFragmentCompat extends EditTextPreferenceDialogFragmentCompat {
36 | public PasswordPreferenceDialogFragmentCompat() {
37 | }
38 |
39 | public static PasswordPreferenceDialogFragmentCompat newInstance(String key) {
40 | PasswordPreferenceDialogFragmentCompat fragment = new PasswordPreferenceDialogFragmentCompat();
41 | Bundle b = new Bundle(1);
42 | b.putString("key", key);
43 | fragment.setArguments(b);
44 | return fragment;
45 | }
46 |
47 | @Override
48 | protected void onBindDialogView(View view) {
49 | super.onBindDialogView(view);
50 | EditText editText = view.findViewById(android.R.id.edit);
51 | editText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/savetostorage/SaveToStorage.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2013 Benoit 'BoD' Lubek (BoD@JRAF.org)
11 | * Copyright (C) 2015-2017 Carmen Alvarez (c@rmen.ca)
12 | *
13 | * This program is free software: you can redistribute it and/or modify
14 | * it under the terms of the GNU General Public License as published by
15 | * the Free Software Foundation, either version 3 of the License, or
16 | * (at your option) any later version.
17 | *
18 | * This program is distributed in the hope that it will be useful,
19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 | * GNU General Public License for more details.
22 | *
23 | * You should have received a copy of the GNU General Public License
24 | * along with this program. If not, see .
25 | */
26 | package ca.rmen.android.networkmonitor.app.savetostorage;
27 |
28 | import android.content.Context;
29 | import android.net.Uri;
30 | import android.os.Handler;
31 | import android.os.Looper;
32 | import androidx.annotation.WorkerThread;
33 | import android.widget.Toast;
34 |
35 | import ca.rmen.android.networkmonitor.R;
36 | import ca.rmen.android.networkmonitor.app.dbops.ui.Share;
37 |
38 | class SaveToStorage {
39 |
40 | private SaveToStorage() {
41 | // utility class
42 | }
43 |
44 | @WorkerThread
45 | static void displaySuccessToast(final Context context, final Uri dest) {
46 | Handler handler = new Handler(Looper.getMainLooper());
47 | final String displayName = Share.readDisplayName(context, dest);
48 | handler.post(() -> Toast.makeText(context, context.getString(R.string.export_save_to_external_storage_success, displayName), Toast.LENGTH_LONG).show());
49 | }
50 |
51 | static void displayErrorToast(final Context context) {
52 | Handler handler = new Handler(Looper.getMainLooper());
53 | handler.post(() -> Toast.makeText(context, R.string.export_notif_error_content, Toast.LENGTH_LONG).show());
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/service/BootReceiver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2014-2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.service;
25 |
26 | import android.content.BroadcastReceiver;
27 | import android.content.Context;
28 | import android.content.Intent;
29 |
30 | import ca.rmen.android.networkmonitor.Constants;
31 | import ca.rmen.android.networkmonitor.app.prefs.NetMonPreferences;
32 | import android.util.Log;
33 |
34 | public class BootReceiver extends BroadcastReceiver {
35 | private static final String TAG = Constants.TAG + BootReceiver.class.getSimpleName();
36 |
37 | @Override
38 | public void onReceive(Context context, Intent intent) {
39 | Log.v(TAG, "onReceive: intent = " + intent);
40 | if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
41 | // Start the service if it is enabled.
42 | if (NetMonPreferences.getInstance(context).isServiceEnabled())
43 | NetMonService.start(context);
44 | }
45 | }
46 |
47 | }
48 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/service/datasources/NetMonDataSource.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2014 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.service.datasources;
25 |
26 | import android.content.ContentValues;
27 | import android.content.Context;
28 |
29 | import ca.rmen.android.networkmonitor.app.service.NetMonService;
30 |
31 | /**
32 | * A {@link NetMonDataSource} implementation is called periodically to retrieve values for one or several related fields, which will be stored in the database.
33 | * An implementing class must have a no-args constructor: either public, or with package-visibility if it is in this package.
34 | */
35 | interface NetMonDataSource {
36 | /**
37 | * Perform any initialization which will be needed to retrieve data. For example, register any listeners, retrieve any needed system services. This will be
38 | * called when {@link NetMonService} starts.
39 | */
40 | void onCreate(Context context);
41 |
42 | /**
43 | * Perform any cleanup. For example, unregister any listeners. This will be called when {@link NetMonService} stops.
44 | */
45 | void onDestroy();
46 |
47 | /**
48 | * This will be called periodically, on a background thread, according to the interval the user selected in the preferences.
49 | *
50 | * @return the attributes of the particular data source, at the current time.
51 | */
52 | ContentValues getContentValues();
53 | }
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/service/scheduler/Scheduler.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2014-2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.service.scheduler;
25 |
26 | import android.content.Context;
27 |
28 | /**
29 | * Schedules a single Runnable to run periodically.
30 | */
31 | public interface Scheduler {
32 |
33 | /**
34 | * Perform any initialization needed.
35 | */
36 | void onCreate(Context context);
37 |
38 | /**
39 | * Perform any shutdown tasks and free any resources.
40 | */
41 | void onDestroy();
42 |
43 | /**
44 | * Schedule the given task at the given interval in milliseconds.
45 | */
46 | void schedule(Runnable runnable, int interval);
47 |
48 | /**
49 | * Change the interval at which the existing task is scheduled.
50 | */
51 | void setInterval(int interval);
52 | }
53 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/speedtest/SpeedTestAboutActivity.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2014-2016 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.speedtest;
25 |
26 | import android.os.Bundle;
27 | import android.util.Log;
28 | import android.view.View;
29 | import android.webkit.WebView;
30 |
31 | import androidx.appcompat.app.AppCompatActivity;
32 | import ca.rmen.android.networkmonitor.Constants;
33 | import ca.rmen.android.networkmonitor.R;
34 |
35 | /**
36 | * Activity which shows an HTML explanation of the speed test limitations
37 | */
38 | public class SpeedTestAboutActivity extends AppCompatActivity {
39 | private static final String TAG = Constants.TAG + SpeedTestAboutActivity.class.getSimpleName();
40 |
41 | @Override
42 | protected void onCreate(Bundle savedInstanceState) {
43 | super.onCreate(savedInstanceState);
44 | setContentView(R.layout.activity_speed_test_about);
45 |
46 | WebView wv = findViewById(R.id.webview);
47 | wv.setBackgroundColor(0);
48 | wv.getSettings().setDefaultFontSize(14);
49 | wv.loadUrl(getString(R.string.speed_test_about_file));
50 | }
51 |
52 | @SuppressWarnings("UnusedParameters")
53 | public void okClicked(View view) {
54 | Log.v(TAG, "okClicked");
55 | finish();
56 | }
57 |
58 | }
59 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/app/speedtest/SpeedTestDownloadConfig.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2014-2020 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.app.speedtest;
25 |
26 | import java.io.File;
27 |
28 | import android.text.TextUtils;
29 |
30 | import androidx.annotation.NonNull;
31 |
32 | public class SpeedTestDownloadConfig {
33 | final String url;
34 | final File file;
35 |
36 | /**
37 | * @param url the url of the file to download
38 | * @param file where we will save the downloaded file.
39 | */
40 | public SpeedTestDownloadConfig(String url, File file) {
41 | this.url = url;
42 | this.file = file;
43 | }
44 |
45 | /**
46 | * @return true if we have enough info to attempt to download a file.
47 | */
48 | @SuppressWarnings("BooleanMethodIsAlwaysInverted")
49 | public boolean isValid() {
50 | return !TextUtils.isEmpty(url);
51 | }
52 |
53 | @Override
54 | @NonNull
55 | public String toString() {
56 | return SpeedTestDownloadConfig.class.getSimpleName() + "[url=" + url + "]";
57 | }
58 | }
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/provider/ConnectionTestStatsColumns.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2013 Carmen Alvarez (c@rmen.ca)
11 | * Copyright (C) 2013 Benoit 'BoD' Lubek (BoD@JRAF.org)
12 | *
13 | * Licensed under the Apache License, Version 2.0 (the "License");
14 | * you may not use this file except in compliance with the License.
15 | * You may obtain a copy of the License at
16 | *
17 | * http://www.apache.org/licenses/LICENSE-2.0
18 | *
19 | * Unless required by applicable law or agreed to in writing, software
20 | * distributed under the License is distributed on an "AS IS" BASIS,
21 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 | * See the License for the specific language governing permissions and
23 | * limitations under the License.
24 | */
25 | package ca.rmen.android.networkmonitor.provider;
26 |
27 | import android.net.Uri;
28 | import android.provider.BaseColumns;
29 |
30 | public class ConnectionTestStatsColumns implements BaseColumns {
31 | static final String VIEW_NAME = "connection_test_stats";
32 | public static final Uri CONTENT_URI = Uri.parse(NetMonProvider.CONTENT_URI_BASE + "/" + VIEW_NAME);
33 | public static final String TYPE = "type";
34 | public static final String ID1 = "id1";
35 | public static final String ID2 = "id2";
36 | public static final String ID3 = "id3";
37 | public static final String LABEL = "label";
38 | public static final String TEST_RESULT = "test_result";
39 | public static final String TEST_COUNT = "test_count";
40 | }
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/provider/UniqueValuesColumns.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2013-2015 Carmen Alvarez (c@rmen.ca)
11 | * Copyright (C) 2013 Benoit 'BoD' Lubek (BoD@JRAF.org)
12 | *
13 | * Licensed under the Apache License, Version 2.0 (the "License");
14 | * you may not use this file except in compliance with the License.
15 | * You may obtain a copy of the License at
16 | *
17 | * http://www.apache.org/licenses/LICENSE-2.0
18 | *
19 | * Unless required by applicable law or agreed to in writing, software
20 | * distributed under the License is distributed on an "AS IS" BASIS,
21 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 | * See the License for the specific language governing permissions and
23 | * limitations under the License.
24 | */
25 | package ca.rmen.android.networkmonitor.provider;
26 |
27 | import android.net.Uri;
28 |
29 | /**
30 | * This is neither a db table nor view. These columns and content uri allow retrieving, for a given column, the unique values that that column has, as well as
31 | * the count of each of these unique values.
32 | */
33 | public class UniqueValuesColumns {
34 | static final String NAME = "unique_values";
35 | public static final Uri CONTENT_URI = Uri.parse(NetMonProvider.CONTENT_URI_BASE + "/" + NAME);
36 |
37 | public static final String VALUE = "value";
38 | public static final String COUNT = "count";
39 | }
--------------------------------------------------------------------------------
/networkmonitor/src/main/java/ca/rmen/android/networkmonitor/util/TextUtil.java:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2016 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | package ca.rmen.android.networkmonitor.util;
25 |
26 | import android.os.Build;
27 | import android.text.Html;
28 | import android.text.Spanned;
29 |
30 | public class TextUtil {
31 |
32 | public static Spanned fromHtml(String text) {
33 | if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
34 | // noinspection deprecation
35 | return Html.fromHtml(text);
36 | } else {
37 | return Html.fromHtml(text, Html.FROM_HTML_MODE_LEGACY);
38 | }
39 | }
40 |
41 | }
42 |
43 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/anim/rotate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/about_bg_bitmap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/about_bg_bitmap.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_about_bug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_about_bug.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_about_contributions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_about_contributions.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_about_libraries.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_about_libraries.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_about_rate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_about_rate.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_about_source_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_about_source_code.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_filter.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_logs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_logs.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_profile_location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_profile_location.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_profile_mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_profile_mobile.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_profile_wifi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_profile_wifi.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_refresh.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_select_all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_select_all.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_select_none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_select_none.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_action_stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_action_stop.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_alert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_alert.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_device_sd_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_device_sd_storage.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_about.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_db_record_count.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_db_record_count.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_password.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_recipients.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_recipients.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_report_formats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_report_formats.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_security.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_email_user.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_enable_connection_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_enable_connection_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_enable_service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_enable_service.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_folder.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_location_fetching_strategy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_location_fetching_strategy.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_notification_enabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_notification_enabled.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_notification_priority.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_notification_priority.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_notification_ringtone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_notification_ringtone.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_question.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_scheduler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_scheduler.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_server.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_settings.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_show_log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_show_log.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_speed_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_speed_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_theme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_theme.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_update_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_update_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_url.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_url.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_pref_wake_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_pref_wake_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_stat_action_done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_stat_action_done.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_delete.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_stat_db_op_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_stat_service_running.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_stat_service_running.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/ic_stat_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/ic_stat_warning.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/netmon_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/netmon_list_focused_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/netmon_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/netmon_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/netmon_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/netmon_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-hdpi/netmon_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-hdpi/netmon_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-ldpi/ic_action_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-ldpi/ic_action_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-ldpi/ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-ldpi/ic_action_refresh.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_about_bug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_about_bug.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_about_contributions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_about_contributions.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_about_libraries.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_about_libraries.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_about_rate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_about_rate.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_about_source_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_about_source_code.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_filter.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_logs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_logs.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_profile_location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_profile_location.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_profile_mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_profile_mobile.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_profile_wifi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_profile_wifi.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_refresh.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_select_all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_select_all.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_select_none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_select_none.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_action_stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_action_stop.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_alert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_alert.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_device_sd_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_device_sd_storage.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_about.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_db_record_count.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_db_record_count.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_password.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_recipients.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_recipients.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_report_formats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_report_formats.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_security.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_email_user.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_enable_connection_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_enable_connection_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_enable_service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_enable_service.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_folder.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_location_fetching_strategy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_location_fetching_strategy.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_notification_enabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_notification_enabled.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_notification_priority.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_notification_priority.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_notification_ringtone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_notification_ringtone.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_question.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_scheduler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_scheduler.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_server.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_settings.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_show_log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_show_log.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_speed_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_speed_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_theme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_theme.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_update_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_update_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_url.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_url.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_pref_wake_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_pref_wake_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_stat_action_done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_stat_action_done.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_delete.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_stat_db_op_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_stat_service_running.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_stat_service_running.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/ic_stat_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/ic_stat_warning.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/netmon_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/netmon_list_focused_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/netmon_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/netmon_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/netmon_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/netmon_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-mdpi/netmon_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-mdpi/netmon_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_about_bug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_about_bug.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_about_contributions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_about_contributions.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_about_libraries.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_about_libraries.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_about_rate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_about_rate.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_about_source_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_about_source_code.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_filter.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_logs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_logs.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_profile_location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_profile_location.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_profile_mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_profile_mobile.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_profile_wifi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_profile_wifi.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_refresh.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_select_all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_select_all.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_select_none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_select_none.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_action_stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_action_stop.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_alert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_alert.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_device_sd_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_device_sd_storage.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_about.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_db_record_count.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_db_record_count.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_password.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_recipients.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_recipients.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_report_formats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_report_formats.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_security.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_email_user.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_enable_connection_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_enable_connection_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_enable_service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_enable_service.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_folder.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_location_fetching_strategy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_location_fetching_strategy.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_notification_enabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_notification_enabled.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_notification_priority.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_notification_priority.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_notification_ringtone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_notification_ringtone.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_question.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_scheduler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_scheduler.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_server.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_settings.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_show_log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_show_log.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_speed_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_speed_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_theme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_theme.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_update_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_update_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_url.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_url.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_wake_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_pref_wake_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_action_done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_action_done.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_delete.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_db_op_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_service_running.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_service_running.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/ic_stat_warning.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_focused_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xhdpi/netmon_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_bug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_bug.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_contributions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_contributions.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_rate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_rate.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_source_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_about_source_code.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_filter.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_logs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_logs.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_profile_location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_profile_location.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_profile_mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_profile_mobile.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_profile_wifi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_profile_wifi.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_refresh.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_select_all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_select_all.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_select_none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_select_none.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_action_stop.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_alert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_alert.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_device_sd_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_device_sd_storage.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_about.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_db_record_count.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_db_record_count.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_password.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_recipients.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_recipients.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_report_formats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_report_formats.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_security.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_email_user.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_enable_connection_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_enable_connection_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_enable_service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_enable_service.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_folder.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_location_fetching_strategy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_location_fetching_strategy.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_notification_enabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_notification_enabled.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_notification_priority.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_notification_priority.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_notification_ringtone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_notification_ringtone.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_question.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_scheduler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_scheduler.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_server.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_settings.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_show_log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_show_log.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_speed_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_speed_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_theme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_theme.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_update_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_update_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_url.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_url.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_wake_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_pref_wake_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_action_done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_action_done.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_delete.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_db_op_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/ic_stat_warning.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_focused_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxhdpi/netmon_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_filter.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_profile_location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_profile_location.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_profile_mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_profile_mobile.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_profile_wifi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_profile_wifi.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_refresh.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_select_all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_select_all.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_select_none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_select_none.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_action_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_alert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_alert.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_device_sd_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_device_sd_storage.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_about.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_cell_id_format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_cell_id_format.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_clear.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_db_record_count.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_db_record_count.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_password.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_recipients.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_recipients.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_report_formats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_report_formats.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_security.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_email_user.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_enable_connection_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_enable_connection_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_enable_service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_enable_service.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_folder.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_location_fetching_strategy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_location_fetching_strategy.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_notification_enabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_notification_enabled.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_notification_priority.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_notification_priority.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_notification_ringtone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_notification_ringtone.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_question.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_scheduler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_scheduler.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_select_fields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_select_fields.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_server.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_settings.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_share.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_show_log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_show_log.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_speed_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_speed_test.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_theme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_theme.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_update_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_update_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_url.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_url.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_wake_interval.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_pref_wake_interval.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_action_done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_action_done.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_compress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_compress.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_delete.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_export.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_db_op_import.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/drawable-xxxhdpi/ic_stat_warning.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable/about_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
28 |
29 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable/ic_about_legal.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable/ic_about_privacy.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable/ic_battery.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
30 |
33 |
37 |
38 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable/ic_data.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
30 |
33 |
34 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable/netmon_list_selector_background_transition_holo_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/drawable/netmon_list_selector_holo_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/layout/filter_columns.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
33 |
34 |
43 |
44 |
48 |
49 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/layout/gnuplot_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
33 |
34 |
43 |
44 |
48 |
49 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/layout/log.xml:
--------------------------------------------------------------------------------
1 |
2 |
26 |
30 |
31 |
41 |
42 |
49 |
50 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/layout/ok_cancel_bar.xml:
--------------------------------------------------------------------------------
1 |
24 |
26 |
27 |
35 |
36 |
44 |
45 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/layout/refresh_icon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/layout/select_fields.xml:
--------------------------------------------------------------------------------
1 |
24 |
26 |
27 |
34 |
35 |
40 |
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/menu/filter_columns.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
27 |
28 |
32 |
36 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/menu/select_fields.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
27 |
28 |
33 |
38 |
43 |
48 |
53 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-hdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-mdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/caarmen/network-monitor/34b696f5e031f23b7e470b97314587f959a60b1e/networkmonitor/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-es/strings_compress.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | ¿Comprimir la base de datos?
29 | Fusionará líneas consecutivas con datos idénticos.
30 |
31 | Compresión de la base de datos
32 |
33 | Compresión de la base de datos
34 |
35 | Compresión de la base de datos
36 | Registro %1$d de %2$d
37 | Base de datos comprimida
38 |
39 | - %1$d registro borrado de la base de datos.
40 | - %1$d registros borrados de la base de datos.
41 |
42 | La compresión de la base de datos ha sido cancelada.
43 | Error en la compresión de la base de datos.
44 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-es/strings_import.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | Confirmar la importación
29 | ¿Borrar todos los datos y reemplazarlos con %s?
30 |
31 | Importación de la base de datos
32 |
33 | Importación de la base de datos
34 |
35 | Importación
36 | %1$d de %2$d registros importados
37 | Importación terminada
38 | Importación de %s realizada correctamente
39 | La importación ha sido cancelada
40 | Error en la importación de %s.
41 |
42 |
43 | Importación de ajustes
44 | ¿Reemplazar los ajustes con %s?
45 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-es/strings_purge.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | Limpieza de la base de datos
29 |
30 | Limpieza de la base de datos
31 |
32 | Limpieza de la base de datos
33 | %1$d de %2$d registros procesados
34 | Base de datos limpiada
35 | %1$d registros borrados de la base de datos
36 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-fr/strings_compress.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 | Compresser la base de données ?
28 | Fusionner les lignes consecutives avec données identiques.
29 |
30 | Compression de la base de données
31 |
32 | Compression de la base de données
33 |
34 | Compression de la base de données
35 | Element %1$d sur %2$d
36 | Base de données compressée.
37 |
38 | - %1$d ligne supprimée de la base de données.
39 | - %1$d lignes supprimées de la base de données.
40 |
41 | La compression de la base de données a été annulée.
42 | Echec de la compression de la base de données.
43 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-fr/strings_import.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | Confirmer l\'import
29 | Supprimer toutes les données et les remplacer par %s?
30 |
31 | Importation de la base de données
32 |
33 | Importation de la base de données
34 |
35 | Importation de la base de données
36 | %1$d sur %2$d elements importés
37 | Importation terminée
38 | L\'importation de %s a réussi.
39 | L\'importation a été annulée.
40 | Echec de l\'importation de %s.
41 |
42 |
43 | Importation des préférences
44 | Remplacer les préférences par %s?
45 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-fr/strings_purge.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | Nettoyage de la base de données
29 |
30 | Nettoyage de la base de données
31 |
32 | Nettoyage de la base de données
33 | %1$d sur %2$d elements traités
34 | Base de données nettoyée
35 | %1$d elements supprimés de la base de données
36 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-night/colors_netmon.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 | 0xFFFFFF
27 |
28 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-night/donottranslate_strings_export_html.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
29 | body {
30 | background-color: #000;
31 | color: #fff;
32 | }
33 | tr.even td {
34 | background-color:#444;
35 | }
36 | tr.odd td {
37 | background-color:#222;
38 | }
39 | td.pass {
40 | color:#8A8;
41 | }
42 | td.fail {
43 | color:#F88;
44 | }
45 | td.slow {
46 | color:#FC8;
47 | }
48 | ]]>
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-sw600dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-sw720dp-land/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 | 128dp
9 |
10 |
11 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-v17/donottranslate_arrays_dbcolumns.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | - most_consuming_app_name
29 | - most_consuming_app_bytes
30 | - lte_cell_earfcn
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-v19/strings_export.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 | true
27 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-v21/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-v23/donottranslate_arrays_dbcolumns.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | - lte_cell_earfcn
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-v23/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
31 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values-v24/donottranslate_arrays_dbcolumns.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values/colors_netmon.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 | #ff974c00
27 | #ffe68f3e
28 | #a5ffa047
29 | 0x0
30 |
31 | #FFF300
32 |
33 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 16dp
6 | 16dp
7 |
8 |
9 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values/donottranslate_strings_export_gnuplot.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | "reset\n
29 | set terminal png size 1024,768
30 | set output \'networkmonitor-gnuplot.png\'
31 | set style data dots
32 | set timefmt \"%%Y-%%m-%%d %%H:%%M:%%S\"
33 | set xdata time
34 | set title \"Network Monitor: %1$s \\\\& %2$s\"
35 | set key outside box title \"%2$s\"
36 | set datafile sep \'|\'
37 | set format x \"%%Y-%%m-%%d\"
38 | set ylabel \"%1$s\"
39 | set xtics rotate
40 | set xrange[\"%3$s\" : \"%4$s\"]
41 | plot \\"
42 |
43 | \'-\' using 1:2 title \'%s\' with points pointtype 7 pointsize 1
44 |
45 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values/strings_compress.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 | Compress the database?
28 | This will merge consecutive rows with identical data.
29 |
30 | Compressing the database
31 |
32 | Database compression
33 |
34 | Database compression
35 | Processing %1$d of %2$d
36 | Database compressed
37 |
38 | - %1$d row deleted from the database
39 | - %1$d rows deleted from the database.
40 |
41 | The database compression was canceled.
42 | Failed to compress the database.
43 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values/strings_import.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 | Confirm import
28 | Delete the current database and replace with %s?
29 |
30 | Importing database
31 |
32 | Database import
33 |
34 | Importing database
35 | Importing %1$d of %2$d
36 | Import complete
37 | Successfully imported %s.
38 | The import was canceled.
39 | Failed to import %s.
40 |
41 |
42 | Importing settings
43 | Replace current settings with %s?
44 |
45 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/values/strings_purge.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 | Cleaning up the database
29 |
30 | Database cleaning
31 |
32 | Cleaning up the database
33 | Deleting %1$d of %2$d
34 | Database cleaned
35 | Deleted %1$d records from the database
36 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/xml/backup_scheme.xml:
--------------------------------------------------------------------------------
1 |
19 |
20 |
21 |
24 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/xml/export_gnuplot_preferences.xml:
--------------------------------------------------------------------------------
1 |
24 |
26 |
27 |
28 |
35 |
42 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/networkmonitor/src/main/res/xml/file_paths.xml:
--------------------------------------------------------------------------------
1 |
24 |
25 |
28 |
29 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | /*
2 | * This source is part of the
3 | * _____ ___ ____
4 | * __ / / _ \/ _ | / __/___ _______ _
5 | * / // / , _/ __ |/ _/_/ _ \/ __/ _ `/
6 | * \___/_/|_/_/ |_/_/ (_)___/_/ \_, /
7 | * /___/
8 | * repository.
9 | *
10 | * Copyright (C) 2015 Carmen Alvarez (c@rmen.ca)
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the "License");
13 | * you may not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * http://www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an "AS IS" BASIS,
20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 | include ':networkmonitor'
25 |
--------------------------------------------------------------------------------
/signing.properties.template:
--------------------------------------------------------------------------------
1 | KeyAlias=my-key-alias
2 | KeyPassword=my-key-password
3 | StoreFile=/path/to/signing/certificate
4 | StorePassword=my-store-password
--------------------------------------------------------------------------------