ReactiveWiFi icon indicating copy to clipboard operation
ReactiveWiFi copied to clipboard

Android library listening available WiFi Access Points and related information with RxJava Observables

Results 10 ReactiveWiFi issues
Sort by recently updated
recently updated
newest added

Hi, Any plans to make a new release on Gradle repo? I see there was a lot of changes in RxJava since 2018. Anyway, thanks for great lib!

question

After version 8.0 Android started apply limitations to the frequency of scans using. The new limitations are; > Android 8.0 and Android 8.1: > > Each background app can scan...

Bumps gradle from 3.6.3 to 4.0.1. [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.android.tools.build:gradle&package-manager=gradle&previous-version=3.6.3&new-version=4.0.1)](https://dependabot.com/compatibility-score/?dependency-name=com.android.tools.build:gradle&package-manager=gradle&previous-version=3.6.3&new-version=4.0.1) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

``` return new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { wifiManager.startScan(); emitter.onNext(wifiManager.getScanResults()); } }; ``` BroadcastReceiver.onReceive always run in the UI thread, so getScanResults() and startScan still...

Is the library able to detect when Android device is connected to WiFi AP but the access point has just lost the internet connection? I want to react on such...

question

What will be the expected behavior when the ap is disconnected? Will it fires emission with a null Wifi info object? Much Thanks!

question

I'm using `ReactiveWifiLocal.observeWifiAccessPoints(context)` everything works well except that I'm receiving too much events, and it is causing high cpu load, lags and battery drain. I can handle it partially by...

as mentioned in https://github.com/pwittchen/ReactiveNetwork/issues/92.

enhancement

Investigate continuous monitoring of `ScanResult.level` (RSSI) in dBm. Not only when WiFi signal strength changes (what is indicated by system broadcast), but all the time within a given interval. Draft...

enhancement