|
1 | 1 | # Yoti Android SDK
|
| 2 | +[](https://github.com/getyoti/android-sdk-button/releases) [](https://github.com/getyoti/android-sdk-button/actions?query=workflow%3A%22Publish+Release%22) |
| 3 | + |
2 | 4 | The mobile SDK purpose is to provide 3rd party applications the ability to request attributes from a Yoti user while leveraging the Yoti mobile App. It is an interaction between a 3rd Party app and Yoti app facilitated by a very lightweight SDKs.
|
3 | 5 | This repo contains the tools and step by step instructions so that your users can share their identity details with your application in a secure and trusted way.
|
4 | 6 |
|
5 | 7 |
|
6 | 8 | ## Table of Contents
|
7 | 9 |
|
8 |
| -1) [References](#references) |
9 |
| -2) [Requirements](#requirements) |
10 |
| -3) [Installing the SDK](#installing-the-sDK) |
11 |
| -4) [Profile Retrieval](#profile-retrieval) |
12 |
| -5) [Handling Users](#handling-users) |
13 |
| -6) [Running the Example](#running-the-example) |
14 |
| -7) [API Coverage](#api-coverage) |
15 |
| -8) [Support](#support) |
| 10 | +* [References](#references) |
| 11 | +* [Requirements](#requirements) |
| 12 | +* [Installing the SDK](#installing-the-sdk) |
| 13 | +* [Configuration](#configuration) |
| 14 | +* [Running the Example](#running-the-example) |
| 15 | +* [API Coverage](#api-coverage) |
| 16 | +* [Support](#support) |
16 | 17 | ## References
|
17 | 18 |
|
18 | 19 | * [Base64 data](https://en.wikipedia.org/wiki/Base64)
|
@@ -52,15 +53,16 @@ Please start by adding dependencies in the "build.grade" file inside your applic
|
52 | 53 |
|
53 | 54 | ```gradle
|
54 | 55 | dependencies {
|
55 |
| - compile(com.yoti.mobile.android.sdk:yoti-button-sdk:1.1.0) |
| 56 | + compile(com.yoti.mobile.android.sdk:yoti-button-sdk:$yotiButtonVersion) |
56 | 57 | }
|
57 | 58 | ```
|
58 | 59 | OR if you are using a more recent version of gradle (>= 3.x):
|
59 | 60 | ```gradle
|
60 | 61 | dependencies {
|
61 |
| - implementation(com.yoti.mobile.android.sdk:yoti-button-sdk:1.1.0) |
| 62 | + implementation(com.yoti.mobile.android.sdk:yoti-button-sdk:$yotiButtonVersion) |
62 | 63 | }
|
63 | 64 | ```
|
| 65 | +where `$yotiButtonVersion` references the latest [release](https://github.com/getyoti/android-sdk-button/releases) |
64 | 66 |
|
65 | 67 | [See this code in one of our sample apps](./sample-app/build.gradle)
|
66 | 68 |
|
|
0 commit comments