Skip to content
This repository has been archived by the owner on Jun 13, 2019. It is now read-only.

1.0.5

Compare
Choose a tag to compare
@pwittchen pwittchen released this 13 May 07:35
· 121 commits to master since this release

In this version, we can customize NetworkEvents object. E.g. we can set our own ping url and ping timeout:

networkEvents = new NetworkEvents(this, bus)
        .withPingUrl("http://www.android.com")
        .withPingTimeout(50 * 1000);

We can also disable ping or Wifi Access Points Scan:

networkEvents = new NetworkEvents(this, bus)
        .withoutPing()
        .withoutWifiAccessPointsScan();

In the main repository, we can find new examples of applications showing how to use these methods.
In addition, internal elements of code (especially NetworkEvents class) were updated and new unit tests were created.