Skip to content

Commit 36947b6

Browse files
committed
Remove allowBackup from manifest
This resolves merge manifest errors which occur when a project integrating the library has `allowBackup` set to false. The existing behaviour could be overridden with: ``` <application android:allowBackup="false" tools:replace="android:allowBackup" .... ``` But not having the declaration at all since the library doesn't specifically use it is a better default.
1 parent a1ffaef commit 36947b6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
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.

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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
package="com.yoti.mobile.android.sdk">
44

55
<application
6-
android:allowBackup="true"
76
android:label="@string/app_name"
87
android:supportsRtl="true">
98
<activity android:name=".ReceiverActivity" android:theme="@style/Theme.AppCompat.Translucent"/>

0 commit comments

Comments
 (0)