okhttp-oauth2-client
okhttp-oauth2-client copied to clipboard
Dont find oauth2library dependency on Maven Central
I am working with Maven. Then I added this dependency on maven central (https://mvnrepository.com/artifact/ca.mimic/oauth2library/2.4.2).
But did not find the dependency.

4 years later, anyone found some alternative?
Here the solution, if someone need it:
on build.gradle root project:
repositories {
//... other repositories
maven { url 'https://jitpack.io' }
}
on build.gradle of module:
dependencies {
// ... other dependencies
implementation 'com.github.mimicmobile:okhttp-oauth2-client:2.4.2'
}
@gtux thanks for posting a solution.