Name Description Size Coverage
SitePermissionsWifiIntegration.kt Handles implementation details of only setting up a WIFI connectivity listener if the current user settings require it. 2489 -
WifiConnectionMonitor.kt Attaches itself to the [Application] and listens for WIFI available/not available events. This allows calling code to set simpler listeners. Example: ```kotlin app.components.wifiConnectionListener.addOnWifiConnectedChangedListener { isConnected -> if (isConnected) { downloadThing() } } app.components.wifiConnectionListener.start() ``` 4315 -