From 97c27048f711757685b23c0d334c3fca39558868 Mon Sep 17 00:00:00 2001 From: Fabrice Thilaw <13453007+fabricethilaw@users.noreply.github.com> Date: Mon, 2 Nov 2020 11:09:40 +0100 Subject: [PATCH] Update README.md ConnectivityManager is a well known class in the Android framework API that allows for detecting network data. But this class does not generally return accurate results in situations where for example a device is connected to a Wi-Fi router that has no Internet access. Sonarnet wraps the ConnectivityManager and mimics the Android OS mean of detecting Internet access on connected networks. This library also helps skip the boilerplate code with a simple interface. The way Sonarnet detects internet connectivity is aslo similar to the one used by Google Chrome App, as described here : https://www.google.com/chrome/privacy/whitepaper.html#offline --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 0f48150..604c295 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,11 @@ Please read the [contribution guidelines](CONTRIBUTING.md) if you want to contri +### Network [Back ⇈](#contents) +* [Sonarnet](https://github.com/fabricethilaw/sonarnet) - Kotlin library providing better awareness of true Internet access and captive portals for Android. + + + ## Projects [Back ⇈](#contents) * [Bandhook Kotlin](https://github.com/antoniolg/Bandhook-Kotlin) - A showcase music app for Android entirely written using Kotlin language. * [Kotlin for Android Developers](https://github.com/antoniolg/Kotlin-for-Android-Developers) - Companion App for the book "Kotlin Android Developers".