This library enhances the power of coroutines and intends to enhance it's power by having better error handling, being network aware, waiting for the internet connection before executing the calls and being lifecycle aware and memory efficient.
To add to your Android project:
- Add the Jitpack url
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
- Add this dependency
dependencies {
implementation 'com.github.RysanekRivera:Powerful-Coroutines:$latestVersion'
}