An Android library to check actual internet connectivity.
- Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add the dependency:
implementation 'com.github.SalahoAmro:NetDetect:1.0.0'
- Initialize NetDetect in Application class:
NetDetect.init(this);
- Use it anywhere!
NetDetect.check((isConnected -> Toast.makeText(this, isConnected + "", Toast.LENGTH_SHORT).show()));