├── .gitignore ├── COPYING ├── Readme.md ├── WearNetworkNotifications.apk ├── WearNetworkNotifications.iml ├── build.gradle ├── changelog.txt ├── common ├── .gitignore ├── build.gradle ├── common.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── mantz_it │ │ └── common │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── mantz_it │ │ └── common │ │ ├── CommonPaths.java │ │ ├── ConnectionData.java │ │ └── WearableApiHelper.java │ └── res │ ├── drawable-hdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── offline.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png │ ├── drawable-mdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── offline.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png │ ├── drawable-xhdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── offline.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png │ ├── drawable-xxhdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── offline.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png │ ├── drawable-xxxhdpi │ └── ic_launcher.png │ ├── raw │ └── mcc_mnc.csv │ ├── values-de │ └── strings.xml │ └── values │ └── strings.xml ├── grab_mcc_mnc_csv_list.py ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icons ├── cellular.xcf ├── cellular_1.png ├── cellular_1_e.png ├── cellular_1_g.png ├── cellular_1_h.png ├── cellular_1_lte.png ├── cellular_2.png ├── cellular_2_e.png ├── cellular_2_g.png ├── cellular_2_h.png ├── cellular_2_lte.png ├── cellular_3.png ├── cellular_3_e.png ├── cellular_3_g.png ├── cellular_3_h.png ├── cellular_3_lte.png ├── cellular_4.png ├── cellular_4_e.png ├── cellular_4_g.png ├── cellular_4_h.png ├── cellular_4_lte.png ├── cellular_5.png ├── cellular_5_e.png ├── cellular_5_g.png ├── cellular_5_h.png ├── cellular_5_lte.png ├── cellular_big.xcf ├── cellular_no_signal.png ├── drawable-hdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png ├── drawable-mdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png ├── drawable-xhdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png ├── drawable-xxhdpi │ ├── cellular_1.png │ ├── cellular_1_e.png │ ├── cellular_1_g.png │ ├── cellular_1_h.png │ ├── cellular_1_lte.png │ ├── cellular_2.png │ ├── cellular_2_e.png │ ├── cellular_2_g.png │ ├── cellular_2_h.png │ ├── cellular_2_lte.png │ ├── cellular_3.png │ ├── cellular_3_e.png │ ├── cellular_3_g.png │ ├── cellular_3_h.png │ ├── cellular_3_lte.png │ ├── cellular_4.png │ ├── cellular_4_e.png │ ├── cellular_4_g.png │ ├── cellular_4_h.png │ ├── cellular_4_lte.png │ ├── cellular_5.png │ ├── cellular_5_e.png │ ├── cellular_5_g.png │ ├── cellular_5_h.png │ ├── cellular_5_lte.png │ ├── cellular_no_signal.png │ ├── ic_launcher.png │ ├── wifi_0_cellular_no_signal.png │ ├── wifi_1_cellular_1.png │ ├── wifi_1_cellular_2.png │ ├── wifi_1_cellular_3.png │ ├── wifi_1_cellular_4.png │ ├── wifi_1_cellular_5.png │ ├── wifi_1_cellular_no_signal.png │ ├── wifi_2_cellular_1.png │ ├── wifi_2_cellular_2.png │ ├── wifi_2_cellular_3.png │ ├── wifi_2_cellular_4.png │ ├── wifi_2_cellular_5.png │ ├── wifi_2_cellular_no_signal.png │ ├── wifi_3_cellular_1.png │ ├── wifi_3_cellular_2.png │ ├── wifi_3_cellular_3.png │ ├── wifi_3_cellular_4.png │ ├── wifi_3_cellular_5.png │ ├── wifi_3_cellular_no_signal.png │ ├── wifi_4_cellular_1.png │ ├── wifi_4_cellular_2.png │ ├── wifi_4_cellular_3.png │ ├── wifi_4_cellular_4.png │ ├── wifi_4_cellular_5.png │ ├── wifi_4_cellular_no_signal.png │ ├── wifi_5_cellular_1.png │ ├── wifi_5_cellular_2.png │ ├── wifi_5_cellular_3.png │ ├── wifi_5_cellular_4.png │ ├── wifi_5_cellular_5.png │ └── wifi_5_cellular_no_signal.png ├── drawable-xxxhdpi │ └── ic_launcher.png ├── ic_launcher.png ├── ic_launcher.psd ├── ic_launcher_highRes.png ├── offline.xcf ├── wifi.xcf ├── wifi_0_cellular_no_signal.png ├── wifi_1_cellular_1.png ├── wifi_1_cellular_2.png ├── wifi_1_cellular_3.png ├── wifi_1_cellular_4.png ├── wifi_1_cellular_5.png ├── wifi_1_cellular_no_signal.png ├── wifi_2_cellular_1.png ├── wifi_2_cellular_2.png ├── wifi_2_cellular_3.png ├── wifi_2_cellular_4.png ├── wifi_2_cellular_5.png ├── wifi_2_cellular_no_signal.png ├── wifi_3_cellular_1.png ├── wifi_3_cellular_2.png ├── wifi_3_cellular_3.png ├── wifi_3_cellular_4.png ├── wifi_3_cellular_5.png ├── wifi_3_cellular_no_signal.png ├── wifi_4_cellular_1.png ├── wifi_4_cellular_2.png ├── wifi_4_cellular_3.png ├── wifi_4_cellular_4.png ├── wifi_4_cellular_5.png ├── wifi_4_cellular_no_signal.png ├── wifi_5_cellular_1.png ├── wifi_5_cellular_2.png ├── wifi_5_cellular_3.png ├── wifi_5_cellular_4.png ├── wifi_5_cellular_5.png ├── wifi_5_cellular_no_signal.png └── wifi_big.xcf ├── mobile ├── .gitignore ├── build.gradle ├── mobile.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── mantz_it │ │ └── wearnetworknotifications │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── mantz_it │ │ └── wearnetworknotifications │ │ ├── ConnectivityBroadcastReceiver.java │ │ ├── PhoneWearableListenerService.java │ │ ├── SettingsActivity.java │ │ └── SettingsFragment.java │ └── res │ ├── menu │ └── main_menu.xml │ ├── values-de │ ├── arrays.xml │ └── strings.xml │ ├── values │ ├── arrays.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── preferences.xml ├── privacy_policy.md ├── screenshots ├── WearNetworkNotifications1.jpg ├── WearNetworkNotifications2.jpg ├── WearNetworkNotifications3.jpg └── feature.png ├── settings.gradle └── wear ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── mantz_it │ │ └── wearnetworknotifications │ │ ├── MainActivity.java │ │ ├── NetworkComplicationProviderService.java │ │ ├── NetworkDataStore.java │ │ ├── NetworkNotificationService.java │ │ ├── PlotSurface.java │ │ ├── StartActivity.java │ │ └── WatchWearableListenerService.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── values-de │ └── strings.xml │ └── values │ └── strings.xml └── wear.iml /.gitignore: -------------------------------------------------------------------------------- 1 | # Java class files 2 | *.class 3 | 4 | # generated files 5 | bin/ 6 | gen/ 7 | 8 | # Local configuration file (sdk path, etc) 9 | local.properties 10 | 11 | # Android Studio 12 | .idea 13 | .gradle 14 | build/ 15 | -------------------------------------------------------------------------------- /WearNetworkNotifications.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/WearNetworkNotifications.apk -------------------------------------------------------------------------------- /WearNetworkNotifications.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- 1 | CHANGELOG - Wear Network Notifications 2 | 3 | version 1.04 4 | - Support for Android Wear 2.0 5 | - Connectivity graph (beta) 6 | - Added Privacy Policy 7 | - Removing donation feature 8 | 9 | version 1.03 10 | - Bug fixes 11 | - Details pages for wifi and mobile data (swipe left on the notification) 12 | 13 | version 1.02 14 | - First stable version. Might still contain minor bugs (please report!) 15 | - Improving translation 16 | - Added some settings 17 | - Implemented work-around for a bug in the Android system that would 18 | prefent the app from reading out the wifi signal strength in some occasions 19 | - Adding 'donate' and 'about' dialogs 20 | 21 | version 1.01 22 | - First released version. Might be unstable. 23 | - Basic functionality works (untested): 24 | - Notify on connectifity events: 25 | WIFI <--> MOBILE <--> OFFLINE 26 | - Update notification when device wakes up 27 | - Notifications customizable 28 | - Available languages: English and German 29 | 30 | version 1.00 31 | - prototype 32 | -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion '26.0.2' 6 | 7 | defaultConfig { 8 | minSdkVersion 18 9 | targetSdkVersion 23 10 | versionCode 1405 11 | versionName "1.4" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | lintOptions { 18 | disable 'MissingTranslation' 19 | } 20 | } 21 | } 22 | dexOptions { 23 | javaMaxHeapSize "4g" 24 | } 25 | } 26 | 27 | dependencies { 28 | compile fileTree(include: ['*.jar'], dir: 'libs') 29 | compile 'com.android.support:appcompat-v7:23.4.0' 30 | compile 'com.google.android.gms:play-services:10.2.1' 31 | } 32 | -------------------------------------------------------------------------------- /common/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /opt/android_sdk/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /common/src/androidTest/java/com/mantz_it/common/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.mantz_it.common; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /common/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /common/src/main/java/com/mantz_it/common/CommonPaths.java: -------------------------------------------------------------------------------- 1 | package com.mantz_it.common; 2 | 3 | /** 4 | *

Wear Network Notifications - Common Paths

5 | * 6 | * Module: CommonPaths.java 7 | * Description: Definition of path strings that are common for wear and mobile components. 8 | * 9 | * @author Dennis Mantz 10 | * 11 | * Copyright (C) 2015 Dennis Mantz 12 | * License: http://www.gnu.org/licenses/gpl.html GPL version 2 or higher 13 | * 14 | * This library is free software; you can redistribute it and/or 15 | * modify it under the terms of the GNU General Public 16 | * License as published by the Free Software Foundation; either 17 | * version 2 of the License, or (at your option) any later version. 18 | * 19 | * This library is distributed in the hope that it will be useful, 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 22 | * General Public License for more details. 23 | * 24 | * You should have received a copy of the GNU General Public 25 | * License along with this library; if not, write to the Free Software 26 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 27 | */ 28 | public class CommonPaths { 29 | public static final String REQUEST_UPDATE = "/requestUpdate"; 30 | public static final String CONNECTIVITY_CHANGED = "/connectivityChanged"; 31 | public static final String CONNECTION_DATA = "/connectionData"; 32 | public static final String SHARED_PREFERENCES = "/sharedPreferences"; 33 | public final static String GET_LOG_MESSAGE_PATH = "/getLog"; 34 | public final static String GET_LOG_RESPONSE_MESSAGE_PATH = "/getLogResponse"; 35 | } 36 | -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_1_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_1_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_1_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_2_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_2_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_2_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_3_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_3_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_3_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_4_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_4_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_4_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_5_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_5_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_5_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/offline.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-hdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-hdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_1_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_1_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_1_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_2_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_2_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_2_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_3_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_3_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_3_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_4_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_4_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_4_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_5_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_5_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_5_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/offline.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-mdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-mdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_1_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_1_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_1_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_2_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_2_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_2_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_3_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_3_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_3_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_4_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_4_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_4_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_5_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_5_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_5_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/offline.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xhdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xhdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_1_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_1_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_1_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_2_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_2_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_2_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_3_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_3_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_3_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_4_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_4_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_4_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_5_e.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_5_g.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_5_h.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/offline.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxhdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxhdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /common/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/common/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /grab_mcc_mnc_csv_list.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # Get the Mobile Country Codes (MCC) and Mobile Network Codes (MNC) table 3 | # from mcc-mnc.com and output it in CSV format. 4 | 5 | # (c) by https://github.com/musalbas 6 | # Modified (striped) by Dennis Mantz 7 | 8 | import re 9 | import urllib2 10 | 11 | print "MCC,MNC,CC,Country,Network" 12 | 13 | td_re = re.compile('([^<]*)'*6) 14 | 15 | html = urllib2.urlopen('http://mcc-mnc.com/').read() 16 | 17 | tbody_start = False 18 | for line in html.split('\n'): 19 | if '' in line: 20 | tbody_start = True 21 | elif '' in line: 22 | break 23 | elif tbody_start: 24 | td_search = td_re.search(line) 25 | csv_line = '' 26 | for n in range(1, 7): 27 | if n == 5: 28 | continue 29 | group = td_search.group(n).strip().replace(',', '') 30 | csv_line += group 31 | if n != 6: 32 | csv_line += ',' 33 | print csv_line 34 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 07 12:59:38 CET 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /icons/cellular.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular.xcf -------------------------------------------------------------------------------- /icons/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_1.png -------------------------------------------------------------------------------- /icons/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_1_e.png -------------------------------------------------------------------------------- /icons/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_1_g.png -------------------------------------------------------------------------------- /icons/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_1_h.png -------------------------------------------------------------------------------- /icons/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_1_lte.png -------------------------------------------------------------------------------- /icons/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_2.png -------------------------------------------------------------------------------- /icons/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_2_e.png -------------------------------------------------------------------------------- /icons/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_2_g.png -------------------------------------------------------------------------------- /icons/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_2_h.png -------------------------------------------------------------------------------- /icons/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_2_lte.png -------------------------------------------------------------------------------- /icons/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_3.png -------------------------------------------------------------------------------- /icons/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_3_e.png -------------------------------------------------------------------------------- /icons/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_3_g.png -------------------------------------------------------------------------------- /icons/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_3_h.png -------------------------------------------------------------------------------- /icons/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_3_lte.png -------------------------------------------------------------------------------- /icons/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_4.png -------------------------------------------------------------------------------- /icons/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_4_e.png -------------------------------------------------------------------------------- /icons/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_4_g.png -------------------------------------------------------------------------------- /icons/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_4_h.png -------------------------------------------------------------------------------- /icons/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_4_lte.png -------------------------------------------------------------------------------- /icons/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_5.png -------------------------------------------------------------------------------- /icons/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_5_e.png -------------------------------------------------------------------------------- /icons/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_5_g.png -------------------------------------------------------------------------------- /icons/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_5_h.png -------------------------------------------------------------------------------- /icons/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_5_lte.png -------------------------------------------------------------------------------- /icons/cellular_big.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_big.xcf -------------------------------------------------------------------------------- /icons/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_1_e.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_1_g.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_1_h.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_2_e.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_2_g.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_2_h.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_3_e.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_3_g.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_3_h.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_4_e.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_4_g.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_4_h.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_5_e.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_5_g.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_5_h.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-hdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-hdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_1_e.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_1_g.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_1_h.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_2_e.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_2_g.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_2_h.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_3_e.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_3_g.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_3_h.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_4_e.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_4_g.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_4_h.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_5_e.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_5_g.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_5_h.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-mdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-mdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_1_e.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_1_g.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_1_h.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_2_e.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_2_g.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_2_h.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_3_e.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_3_g.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_3_h.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_4_e.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_4_g.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_4_h.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_5_e.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_5_g.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_5_h.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xhdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xhdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_1_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_1_e.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_1_g.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_1_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_1_h.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_1_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_1_lte.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_2_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_2_e.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_2_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_2_g.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_2_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_2_h.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_2_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_2_lte.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_3_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_3_e.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_3_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_3_g.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_3_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_3_h.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_3_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_3_lte.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_4_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_4_e.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_4_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_4_g.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_4_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_4_h.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_4_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_4_lte.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_5_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_5_e.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_5_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_5_g.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_5_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_5_h.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_5_lte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_5_lte.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /icons/drawable-xxhdpi/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxhdpi/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /icons/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/ic_launcher.png -------------------------------------------------------------------------------- /icons/ic_launcher.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/ic_launcher.psd -------------------------------------------------------------------------------- /icons/ic_launcher_highRes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/ic_launcher_highRes.png -------------------------------------------------------------------------------- /icons/offline.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/offline.xcf -------------------------------------------------------------------------------- /icons/wifi.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi.xcf -------------------------------------------------------------------------------- /icons/wifi_0_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_0_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/wifi_1_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_1_cellular_1.png -------------------------------------------------------------------------------- /icons/wifi_1_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_1_cellular_2.png -------------------------------------------------------------------------------- /icons/wifi_1_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_1_cellular_3.png -------------------------------------------------------------------------------- /icons/wifi_1_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_1_cellular_4.png -------------------------------------------------------------------------------- /icons/wifi_1_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_1_cellular_5.png -------------------------------------------------------------------------------- /icons/wifi_1_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_1_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/wifi_2_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_2_cellular_1.png -------------------------------------------------------------------------------- /icons/wifi_2_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_2_cellular_2.png -------------------------------------------------------------------------------- /icons/wifi_2_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_2_cellular_3.png -------------------------------------------------------------------------------- /icons/wifi_2_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_2_cellular_4.png -------------------------------------------------------------------------------- /icons/wifi_2_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_2_cellular_5.png -------------------------------------------------------------------------------- /icons/wifi_2_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_2_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/wifi_3_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_3_cellular_1.png -------------------------------------------------------------------------------- /icons/wifi_3_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_3_cellular_2.png -------------------------------------------------------------------------------- /icons/wifi_3_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_3_cellular_3.png -------------------------------------------------------------------------------- /icons/wifi_3_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_3_cellular_4.png -------------------------------------------------------------------------------- /icons/wifi_3_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_3_cellular_5.png -------------------------------------------------------------------------------- /icons/wifi_3_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_3_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/wifi_4_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_4_cellular_1.png -------------------------------------------------------------------------------- /icons/wifi_4_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_4_cellular_2.png -------------------------------------------------------------------------------- /icons/wifi_4_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_4_cellular_3.png -------------------------------------------------------------------------------- /icons/wifi_4_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_4_cellular_4.png -------------------------------------------------------------------------------- /icons/wifi_4_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_4_cellular_5.png -------------------------------------------------------------------------------- /icons/wifi_4_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_4_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/wifi_5_cellular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_5_cellular_1.png -------------------------------------------------------------------------------- /icons/wifi_5_cellular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_5_cellular_2.png -------------------------------------------------------------------------------- /icons/wifi_5_cellular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_5_cellular_3.png -------------------------------------------------------------------------------- /icons/wifi_5_cellular_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_5_cellular_4.png -------------------------------------------------------------------------------- /icons/wifi_5_cellular_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_5_cellular_5.png -------------------------------------------------------------------------------- /icons/wifi_5_cellular_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_5_cellular_no_signal.png -------------------------------------------------------------------------------- /icons/wifi_big.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/icons/wifi_big.xcf -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.apk 3 | manifest-merger-release-report.txt 4 | -------------------------------------------------------------------------------- /mobile/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion '26.0.2' 6 | 7 | defaultConfig { 8 | applicationId "com.mantz_it.wearnetworknotifications" 9 | minSdkVersion 18 10 | targetSdkVersion 23 11 | versionCode 1405 12 | versionName "1.4" 13 | multiDexEnabled true 14 | } 15 | buildTypes { 16 | release { 17 | minifyEnabled false 18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 19 | lintOptions { 20 | disable 'MissingTranslation' 21 | } 22 | } 23 | } 24 | dexOptions { 25 | javaMaxHeapSize "4g" 26 | } 27 | } 28 | 29 | dependencies { 30 | compile fileTree(include: ['*.jar'], dir: 'libs') 31 | compile project(':common') 32 | wearApp project(':wear') 33 | compile 'com.android.support:multidex:1.0.1' 34 | compile 'com.android.support:appcompat-v7:23.4.0' 35 | } 36 | -------------------------------------------------------------------------------- /mobile/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /opt/android_sdk/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /mobile/src/androidTest/java/com/mantz_it/wearnetworknotifications/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.mantz_it.wearnetworknotifications; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /mobile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /mobile/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 12 | 16 | 20 | 24 | -------------------------------------------------------------------------------- /mobile/src/main/res/values-de/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | deaktiviert 5 | 5 sec 6 | 10 sec 7 | 15 sec 8 | 30 sec 9 | 1 min 10 | 2 min 11 | 5 min 12 | 10 min 13 | 14 | 15 | links 16 | rechts 17 | 18 | 19 | Prozent 20 | dBm 21 | ASU Level 22 | 23 | 24 | Prozent 25 | RSSI 26 | 27 | -------------------------------------------------------------------------------- /mobile/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Zeige Log des Telefons 6 | Zeige Log der Uhr 7 | Der Google API Client ist nicht verbunden! 8 | Die Uhr ist nicht verbunden! 9 | Laden 10 | Uhr wird nach der Logdatai abgefragt... 11 | Abfragen der Logdatei von der Uhr fehlgeschlagen: 12 | Log des Telefons 13 | Teilen 14 | Abbrechen 15 | Log der Uhr 16 | Wählen sie eine Email App zum Versenden der Logdatei 17 | Sende Testbenachrichtigung 18 | Zeige Netzwerkinformationen 19 | Ok 20 | Über 21 | Über die App]]> 22 |
24 | Copyright © 2017 Dennis Mantz

25 | Bitte unterstütze meine Arbeit durch eine kleine Spende! 26 | 27 |

Bug gefunden?

28 | Wenn du einen Bug oder einen Übersetzungsfehler findest oder ein 29 | Feature-Wunsch hast, benutze bitte die GitHub Seite des Projekts:
30 | 31 | https://github.com/demantz/WearNetworkNotifications/issues 32 |

33 | Alternativ kannst du mir auch eine Email schreiben an 34 | dennis.mantz@googlemail.com. 35 | 36 |

Privacy Policy

37 | Privacy Policy anzeigen 38 | 39 |

Danke

40 | Ich bedanke mich bei Dominik Schürmann für sein 41 | Android Donation Fragment 42 | das in dieser App verwendet wird! 43 | 44 |

Lizenz

45 | GPL version 2 or higher 46 |

47 | This application is free software; you can redistribute it and/or 48 | modify it under the terms of the GNU General Public 49 | License as published by the Free Software Foundation; either 50 | version 2 of the License, or (at your option) any later version. 51 |

52 | This application is distributed in the hope that it will be useful, 53 | but WITHOUT ANY WARRANTY; without even the implied warranty of 54 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 55 | General Public License for more details. 56 |

57 | You should have received a copy of the GNU General Public 58 | License along with this library; if not, write to the Free Software 59 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
60 |

61 | Schau in den Source Code auf GitHub! 62 | ]]>
63 |
-------------------------------------------------------------------------------- /mobile/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | disabled 5 | 5 sec 6 | 10 sec 7 | 15 sec 8 | 30 sec 9 | 1 min 10 | 2 min 11 | 5 min 12 | 10 min 13 | 14 | 15 | 0 16 | 5 17 | 10 18 | 15 19 | 30 20 | 60 21 | 120 22 | 300 23 | 600 24 | 25 | 26 | left 27 | right 28 | 29 | 30 | left 31 | right 32 | 33 | 34 | Percent 35 | dBm 36 | ASU Level 37 | 38 | 39 | 0 40 | 1 41 | 2 42 | 43 | 44 | Percent 45 | RSSI 46 | 47 | 48 | 0 49 | 2 50 | 51 | -------------------------------------------------------------------------------- /mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Send test notification 3 | Show network information 4 | Show handheld log 5 | Show wearable log 6 | About 7 | Choose the App to share the log file 8 | The google API client is not connected! 9 | The wearable node is not connected! 10 | Loading 11 | Querying wearable device for the log... 12 | Failed to query the wearable device for the log: 13 | Handheld Log 14 | Share 15 | Cancel 16 | Ok 17 | Wearable Log 18 | About the App]]> 19 |
21 | Copyright © 2017 Dennis Mantz

22 | Please support my work by making a small donation! 23 | 24 |

Reporting Bugs

25 | If you find any bugs or translation mistakes or if you want to request 26 | a new feature please use the GitHub page of the project:
27 | 28 | https://github.com/demantz/WearNetworkNotifications/issues 29 |

30 | Alternatively you could write me an email to 31 | dennis.mantz@googlemail.com. 32 | 33 |

Privacy Policy

34 | View Privacy Policy 35 | 36 |

License

37 | GPL version 2 or higher 38 |

39 | This application is free software; you can redistribute it and/or 40 | modify it under the terms of the GNU General Public 41 | License as published by the Free Software Foundation; either 42 | version 2 of the License, or (at your option) any later version. 43 |

44 | This application is distributed in the hope that it will be useful, 45 | but WITHOUT ANY WARRANTY; without even the implied warranty of 46 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 47 | General Public License for more details. 48 |

49 | You should have received a copy of the GNU General Public 50 | License along with this library; if not, write to the Free Software 51 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
52 |

53 | Get the source code of the app here on GitHub! 54 | ]]>
55 |
56 | -------------------------------------------------------------------------------- /mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /privacy_policy.md: -------------------------------------------------------------------------------- 1 | Privacy Policy 2 | ============== 3 | 4 | APP: Wear Network Notifications 5 | DEVELOPER: Dennis Mantz 6 | 7 | 8 | Collected Information 9 | --------------------- 10 | 11 | This app does not collect any personal data! All information stays on the 12 | device and is not stored or uploaded to the internet. 13 | 14 | 15 | Permissions 16 | ----------- 17 | 18 | This app uses the following permissions to detect the network state and 19 | signal strength: 20 | - ACCESS_NETWORK_STATE: Get information about the network connection status 21 | - ACCESS_WIFI_STATE: Get the wifi name and signal strength 22 | - READ_PHONE_STATE: Get information about the cellular connection 23 | - ACCESS_COARSE_LOCATION: To query the system for the currently connected 24 | network cell (to get the signal strength) this permission is also required 25 | 26 | In addition the following permissions are required by additional features: 27 | - VIBRATE: Used to vibrate on notifications (can be turned off!) 28 | - BILLING and INTERNET: Only used for donations via in-app purchases and 29 | PayPal, Flattr, Bitcoins, ... 30 | 31 | 32 | Contact 33 | ------- 34 | 35 | Questions regarding the Privacy Policy can be sent to 36 | dennis.mantz@googlemail.com 37 | 38 | 39 | (Last updated: 2017-03-07) 40 | -------------------------------------------------------------------------------- /screenshots/WearNetworkNotifications1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/screenshots/WearNetworkNotifications1.jpg -------------------------------------------------------------------------------- /screenshots/WearNetworkNotifications2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/screenshots/WearNetworkNotifications2.jpg -------------------------------------------------------------------------------- /screenshots/WearNetworkNotifications3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/screenshots/WearNetworkNotifications3.jpg -------------------------------------------------------------------------------- /screenshots/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demantz/WearNetworkNotifications/706dcfda0b2acb3eada6397a29fafd71432f70fc/screenshots/feature.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobile', ':wear', ':common' 2 | -------------------------------------------------------------------------------- /wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wear/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | 4 | android { 5 | compileSdkVersion 23 6 | buildToolsVersion '26.0.2' 7 | 8 | defaultConfig { 9 | applicationId "com.mantz_it.wearnetworknotifications" 10 | minSdkVersion 23 11 | targetSdkVersion 23 12 | versionCode 1405 13 | versionName "1.4" 14 | multiDexEnabled true 15 | } 16 | buildTypes { 17 | release { 18 | minifyEnabled false 19 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 20 | lintOptions { 21 | disable 'MissingTranslation' 22 | } 23 | } 24 | } 25 | dexOptions { 26 | javaMaxHeapSize "4g" 27 | } 28 | } 29 | 30 | dependencies { 31 | compile fileTree(include: ['*.jar'], dir: 'libs') 32 | compile project(':common') 33 | compile 'com.google.android.support:wearable:2.0.1' 34 | compile 'com.google.android.gms:play-services-wearable:10.2.1' 35 | provided 'com.google.android.wearable:wearable:1.0.0' 36 | } 37 | -------------------------------------------------------------------------------- /wear/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /opt/android_sdk/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 15 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 42 | 43 | 44 | 45 | 46 | 49 | 52 | 53 | 54 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /wear/src/main/java/com/mantz_it/wearnetworknotifications/NetworkDataStore.java: -------------------------------------------------------------------------------- 1 | package com.mantz_it.wearnetworknotifications; 2 | 3 | import android.util.Log; 4 | 5 | import com.mantz_it.common.ConnectionData; 6 | 7 | import java.util.ArrayList; 8 | 9 | /** 10 | * Created by dennis on 4/12/17. 11 | */ 12 | 13 | public class NetworkDataStore { 14 | private static NetworkDataStore instance = null; 15 | private static final String LOGTAG = "NetworkDataStore"; 16 | 17 | private Callback callback; 18 | private ArrayList store; 19 | 20 | private NetworkDataStore() { 21 | this.store = new ArrayList<>(50); 22 | } 23 | 24 | public static NetworkDataStore getInstance() { 25 | if(instance == null) { 26 | instance = new NetworkDataStore(); 27 | } 28 | Log.d(LOGTAG, "getInstance: instance="+instance.toString()); 29 | return instance; 30 | } 31 | 32 | public void setCallback(Callback callback) { 33 | Log.d(LOGTAG, "setCallback: instance="+instance.toString()); 34 | this.callback = callback; 35 | } 36 | 37 | public void insertData(ConnectionData data) { 38 | // remove old data: 39 | Log.d(LOGTAG, "insertData: instance="+instance.toString()); 40 | long now = System.currentTimeMillis(); 41 | long thresholdTime = now - (1000*60*5); 42 | for(int i = store.size()-1; i >= 0; i--) { 43 | if(store.get(i).getTimestamp() < thresholdTime) 44 | store.remove(i); 45 | else 46 | break; // we expect the items are sorted by the timestamp 47 | } 48 | store.add(0, data); 49 | if(callback != null) 50 | callback.onDataUpdated(this); 51 | } 52 | 53 | public int getDataCount() { 54 | return store.size(); 55 | } 56 | 57 | public ConnectionData getData(int index) { 58 | if(index < store.size()) 59 | return store.get(index); 60 | else 61 | return null; 62 | } 63 | 64 | 65 | 66 | public interface Callback { 67 | void onDataUpdated(NetworkDataStore networkDataStore); 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /wear/src/main/java/com/mantz_it/wearnetworknotifications/StartActivity.java: -------------------------------------------------------------------------------- 1 | package com.mantz_it.wearnetworknotifications; 2 | 3 | import android.app.Activity; 4 | import android.content.Intent; 5 | import android.os.Bundle; 6 | 7 | /** 8 | *

Wear Network Notifications - Start Activity

9 | * 10 | * Module: StartActivity.java 11 | * Description: This is the main activity of the wearable app and simply invokes the 12 | * NetworkNotificationService in order to manually trigger the notification. 13 | * 14 | * @author Dennis Mantz 15 | * 16 | * Copyright (C) 2015 Dennis Mantz 17 | * License: http://www.gnu.org/licenses/gpl.html GPL version 2 or higher 18 | * 19 | * This library is free software; you can redistribute it and/or 20 | * modify it under the terms of the GNU General Public 21 | * License as published by the Free Software Foundation; either 22 | * version 2 of the License, or (at your option) any later version. 23 | * 24 | * This library is distributed in the hope that it will be useful, 25 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 26 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 27 | * General Public License for more details. 28 | * 29 | * You should have received a copy of the GNU General Public 30 | * License along with this library; if not, write to the Free Software 31 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 32 | */ 33 | public class StartActivity extends Activity { 34 | @Override 35 | protected void onCreate(Bundle savedInstanceState) { 36 | super.onCreate(savedInstanceState); 37 | 38 | // invoke the NetworkNotification service: 39 | Intent intent = new Intent(this, NetworkNotificationService.class); 40 | intent.setAction(NetworkNotificationService.ACTION_SHOW_NOTIFICATION); 41 | startService(intent); 42 | finish(); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /wear/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 17 | 18 | 24 | 25 | 34 | 35 | 42 | 43 | 50 | 51 | 58 | 59 | 66 | 67 | 72 | 73 | 74 | 75 | 78 | 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /wear/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Netzwerk Benachrichtigungen 4 | -------------------------------------------------------------------------------- /wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | WearNetworkNotifications 3 | Network Notifications 4 | MainActivity 5 | Hello World! 6 | 7 | --------------------------------------------------------------------------------