Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 637 Bytes

File metadata and controls

25 lines (20 loc) · 637 Bytes

Core Hardware

A set of extensions to check some hardware features

NetworkChecker

Class that provides API to check current network status.

Sample usage:

val networkChecker = NetworkChecker(context)
val internetStatus = networkChecker.isInternetConnectionEnabled()
val wifiStatus = networkChecker.isConnectedOverWifi()

SupportedFeaturesExtensions

Sample usage:

val isGpsSupported = context.isGpsSupported()
val isFingerprintSupported = context.isFingerpringSupported()

For full list of functions, please look to the source code, or view documentation