MVN

com.shiftconnects.android.auth : auth-manager

Maven & Gradle

Mar 11, 2015
41 stars

Android Authentication Manager · Handles much of the cruft needed in Android to interface with AccountManager and provides a mechanism for storing a user in your app within AccountManager and automatically refreshing an OAuth2 token when necessary.

<dependency>
    <groupId>com.shiftconnects.android.auth</groupId>
    <artifactId>auth-manager</artifactId>
    <version>1.0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.shiftconnects.android.auth : auth-manager to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.3

All Versions

Choose a version of com.shiftconnects.android.auth : auth-manager to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
auth-manager-1.0.3

How to add a dependency to Maven

Add the following com.shiftconnects.android.auth : auth-manager maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.shiftconnects.android.auth</groupId>
    <artifactId>auth-manager</artifactId>
    <version>1.0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.shiftconnects.android.auth : auth-manager gradle dependency to your build.gradle file:

implementation 'com.shiftconnects.android.auth:auth-manager:1.0.3'

Gradle Kotlin DSL: Add the following com.shiftconnects.android.auth : auth-manager gradle kotlin dependency to your build.gradle.kts file:

implementation("com.shiftconnects.android.auth:auth-manager:1.0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.shiftconnects.android.auth : auth-manager sbt scala dependency to your build.sbt file:

libraryDependencies += "com.shiftconnects.android.auth" % "auth-manager" % "1.0.3"