cross_connectivity 3.3.0 cross_connectivity: ^3.3.0 copied to clipboard
A Flutter plugin for handling Connectivity and REAL Connection state in the mobile, web and desktop platforms. Supports iOS, Android, Web, Windows, Linux and macOS.
Changelog #
3.3.0 #
- Updated sdk constraints to
>=3.5.0 <4.0.0
- Updated dependencies
3.1.0 #
- Updated version of dependancies
- Updated example app
3.0.5 #
- Updated connectivity_plus plugin version to 2.2.1
3.0.4 (thanks to #
- Migrated from the deprecated connectivity plugin to connectivity_plus.
3.0.3 (thanks to #
- Updated libs: rxdart, connectivity.
3.0.2 #
- Fixed null pointer exception in
ConnectivityBuilder
- Redo android example activity to android embedding v2
3.0.1 #
- Fixed lint issues
3.0.0 #
- Updated to NNBD.
2.0.1 #
- Updated changelog and readme.
2.0.0 (thanks to #
-
[Breaking Change] The
getWifiName
,getWifiBSSID
andgetWifiIP
are removed to wifi_info_flutter. -
Migration guide:
If you don't use any of the above APIs, your code should work as is. In addition, you can also remove
NSLocationAlwaysAndWhenInUseUsageDescription
andNSLocationWhenInUseUsageDescription
inios/Runner/Info.plist
.If you use any of the above APIs, you can find the same APIs in the wifi_info_flutter plugin. For example, to migrate
getWifiName
, use the new plugin:final WifiInfo _wifiInfo = WifiInfo(); final String wifiName = await _wifiInfo.getWifiName();
1.1.1 (thanks to #
- Updated libs: meta, http, rxdart.
1.1.0 #
- Added
ConnectivitySettings
with configurablelookupDuration
,lookupHost
,enablePolling
.
1.0.2 #
- Removed debug printing.
1.0.1 #
- Fixed incompatibility issue with Safari and IE of NetworkInformation API.
1.0.0 #
- Created common interface for handling
Connectivity
andREAL Connection
state in the mobile, web and desktop platforms. Supports iOS, Android, Web, Windows, Linux and macOS.