All Versions
15
Latest Version
Avg Release Cycle
48 days
Latest Release
2446 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.1.6 Changes
July 18, 201618 Jul 2016
- โ added customization of the ping parameters via method
NetworkEvents setPingParameters(String host, int port, int timeoutInMs)
- โ added customization of the ping parameters via method
-
v2.1.5 Changes
July 18, 201618 Jul 2016
- โ added the private constructor to
NetworkHelper
class
- โ added the private constructor to
-
v2.1.4 Changes
July 16, 201617 Jul 2016
- ๐ changed implementation of the
OnlineChecker
inOnlineCheckerImpl
class. Now it pings remote host. - โ added
android.permission.INTERNET
toAndroidManifest.xml
- โ added back
NetworkHelper
class with static methodboolean isConnectedToWiFiOrMobileNetwork(context)
- โก๏ธ updated sample apps
- ๐ changed implementation of the
-
v2.1.3 Changes
January 10, 201610 Jan 2016
- Due to memory leak in WifiManager reported in issue 43945 in Android issue tracker replaced Activity Context with Application Context in sample apps and added appropriate note in
README.md
- added
ACCESS_COARSE_LOCATION
permission toAndroidManifest.xml
to be able to scan WiFi access points on Android 6
- Due to memory leak in WifiManager reported in issue 43945 in Android issue tracker replaced Activity Context with Application Context in sample apps and added appropriate note in
-
v2.1.2 Changes
October 04, 201504 Oct 2015
- โฌ๏ธ bumped target SDK version to 23
- โฌ๏ธ bumped buildToolsVersion to 23.0.1
- removed
CHANGE_NETWORK_STATE
andINTERNET
permissions fromAndroidManifest.xml
, because they're no longer required
-
v2.1.1 Changes
September 13, 2015- โก๏ธ updated
InternetConnectionChangeReceiver
class and its API - ๐ fixed failing unit tests
- all changes were provided in a single commit 2f6999c
- โก๏ธ updated
-
v2.1.0 Changes
September 13, 2015- โฌ๏ธ bumped version of gradle build tools to 1.3.0
- disabled
WIFI_CONNECTED
status whenenableInternetCheck()
method is called. Read more about this change in appropriate section ofREADME.md
file.
-
v2.0.1 Changes
August 09, 201509 Aug 2015
replaced
networkInfo.isConnectedOrConnecting()
withnetworkInfo.isConnected()
inisOnline(context)
method inOnlineCheckerImpl
class. -
v2.0.0 Changes
July 31, 2015- โ removed
withPingUrl(url)
method - โ removed
withPingTimeout()
method - โ removed
withoutPing()
method - โ removed
withoutWifiAccessPointsScan()
method - โ removed Otto dependency (now, it's available only for unit tests)
- โ removed
example-disabling-ping-and-wifi-scan
app sample - โ removed
example-ping-customization
app sample - โ removed
NetworkHelper
class and moved its method to specific classes with changed scope - ๐ moved permissions to Manifest of library
- 0๏ธโฃ disabled WiFi scan by default
- 0๏ธโฃ disabled Internet connection check by default
- โ added
BusWrapper
, which is abstraction for Event Bus required byNetworkEvents
object - โ added
example-greenrobot-bus
app sample - โ added
enableWifiScan()
method - โ added
enableInternetCheck()
method - โ added
getWifiScanResults()
method in WifiSignalStrengthChanged event - โ added
getMobileNetworkType()
method in ConnectivityChanged event - โ added JavaDoc at: http://pwittchen.github.io/NetworkEvents/
- โก๏ธ updated existing sample applications
- ๐ updated documentation in
README.md
and library code
- โ removed
-
v1.0.5 Changes
May 13, 201513 May 2015
โฑ 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.