Skip to content

Commit 094117a

Browse files
authored
Merge pull request #15 from samtheson/refac/remove-allow-backup-from-manifest
Remove allowBackup from manifest
2 parents a1ffaef + 0865101 commit 094117a

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [1.1.3] - 2020-02-03
5+
### Removed
6+
Removed `android:allowBackup` from manifest.
7+
48
## [1.1.2] - 2020-01-16
59
### Added
610
[(#11)](https://github.com/getyoti/android-sdk-button/pull/11) Added setter `setUseCaseId()` which enables developers to define the useCaseId programatically. Prior to the change, the Use Case ID could only be set statically in the layout file.

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ currentAppName=Mobile Button SDK
3737
pomId=yoti-button-sdk
3838
pomGroup=com.yoti.mobile.android.sdk
3939
pomPackaging=aar
40-
pomVersion=1.1.2
40+
pomVersion=1.1.3
4141
pomDescription=Button SDK that allows 3rd party to trigger Yoti as support app
4242
currentVersionCode=000008
4343

yoti-sdk/src/main/AndroidManifest.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
package="com.yoti.mobile.android.sdk">
44

55
<application
6-
android:allowBackup="true"
7-
android:label="@string/app_name"
8-
android:supportsRtl="true">
6+
android:label="@string/app_name">
97
<activity android:name=".ReceiverActivity" android:theme="@style/Theme.AppCompat.Translucent"/>
108
<service
119
android:name=".kernelSDK.KernelSDKIntentService"

0 commit comments

Comments
 (0)