Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Nexmo:verify-android-sdk:'
}
dependencies {
implementation("com.github.Nexmo:verify-android-sdk:")
}
<dependency>
<groupId>com.github.Nexmo</groupId>
<artifactId>verify-android-sdk</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.Nexmo" % "verify-android-sdk" % ""
:dependencies [[com.github.Nexmo/verify-android-sdk ""]]
With Verify SDK you add password replacement, 2-factor authentication, or user and transaction verification to your App with a single line of code. Verify SDK:
Learn how to use Verify SDK on [The official documentation page] (https://docs.nexmo.com/libraries/verify-sdk/verify-sdk-for-android)
Feel free to checkout the [Verify SDK codebase] (https://github.com/Nexmo/verify-android-sdk/blob/master/verifySDK) if you wish to contribute to our open source library.
Copyright (c) 2015 Nexmo, Inc. All rights reserved. Licensed only under the Nexmo Verify SDK License Agreement (the "License") located at
https://www.nexmo.com/terms-use/verify-sdk/
By downloading or otherwise using our software or services, you acknowledge that you have read, understand and agree to be bound by the Nexmo Verify SDK License Agreement and Privacy Policy.
You may not use, exercise any rights with respect to or exploit this SDK, or any modifications or derivative works thereof, except in accordance with the License.
Nexmo Open Source Software, oss@nexmo.com