okhttp-oauth2-client icon indicating copy to clipboard operation
okhttp-oauth2-client copied to clipboard

Dont find oauth2library dependency on Maven Central

Open oguzhancevik opened this issue 5 years ago • 3 comments

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.

mvn

oguzhancevik avatar Jun 16 '20 12:06 oguzhancevik

4 years later, anyone found some alternative?

gtux avatar Sep 05 '24 16:09 gtux

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 avatar Sep 05 '24 17:09 gtux

@gtux thanks for posting a solution.

Nystik-gh avatar Oct 22 '24 14:10 Nystik-gh