Skip to content

Commit 0865101

Browse files
committed
Merge branch 'badges' into refac/remove-allow-backup-from-manifest
2 parents 6a557f4 + c323fce commit 0865101

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
# Yoti Android SDK
2+
[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/getyoti/android-sdk-button?label=latest%20release)](https://github.com/getyoti/android-sdk-button/releases) [![Publish Release](https://github.com/getyoti/android-sdk-button/workflows/Publish%20Release/badge.svg)](https://github.com/getyoti/android-sdk-button/actions?query=workflow%3A%22Publish+Release%22)
3+
24
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.
35
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.
46

57

68
## Table of Contents
79

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)
1617
## References
1718

1819
* [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
5253

5354
```gradle
5455
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)
5657
}
5758
```
5859
OR if you are using a more recent version of gradle (>= 3.x):
5960
```gradle
6061
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)
6263
}
6364
```
65+
where `$yotiButtonVersion` references the latest [release](https://github.com/getyoti/android-sdk-button/releases)
6466

6567
[See this code in one of our sample apps](./sample-app/build.gradle)
6668

0 commit comments

Comments
 (0)