Skip to content
This repository was archived by the owner on Jan 12, 2019. It is now read-only.

Commit d800c00

Browse files
author
Jeff Brateman
committed
Update library to 5.1.0
1 parent 55e87be commit d800c00

File tree

8 files changed

+30
-6
lines changed

8 files changed

+30
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ All releases follow [semantic versioning](http://semver.org/).
1414
The latest version is available via `mavenCentral()`. Just add the following dependency:
1515

1616
```
17-
compile 'io.card:android-sdk:5.0.1'
17+
compile 'io.card:android-sdk:5.1.0'
1818
```
1919

2020
You can receive updates about new versions via a few different channels:
@@ -46,7 +46,7 @@ A manual entry fallback mode is provided for devices that do not meet these requ
4646
##### If you use gradle, then add the following dependency from `mavenCentral()`:
4747

4848
```
49-
compile 'io.card:android-sdk:5.0.1'
49+
compile 'io.card:android-sdk:5.1.0'
5050
```
5151

5252
##### If you use something other than gradle, then:

SampleApp/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:1.0.1'
6+
classpath 'com.android.tools.build:gradle:1.3.0'
77
}
88
}
99

@@ -14,8 +14,8 @@ repositories {
1414
apply plugin: 'com.android.application'
1515

1616
android {
17-
compileSdkVersion 21
18-
buildToolsVersion '21.1.2'
17+
compileSdkVersion 23
18+
buildToolsVersion '23.0.1'
1919

2020
signingConfigs {
2121
myConfig {
@@ -52,7 +52,7 @@ dependencies {
5252
if (parent != null) {
5353
compile project(':card.io')
5454
} else {
55-
compile 'io.card:android-sdk:5.0.1'
55+
compile 'io.card:android-sdk:5.1.0'
5656
}
5757
}
5858

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<style name="MyTheme" parent="android:Theme.Material">
4+
<item name="android:windowActionBar">false</item>
5+
<item name="android:windowNoTitle">true</item>
6+
</style>
7+
</resources>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<style name="MyTheme" parent="android:Theme.Black">
4+
<item name="android:windowNoTitle">true</item>
5+
</style>
6+
</resources>

aars/card.io-5.0.1.aar

-2.73 MB
Binary file not shown.

aars/card.io-5.1.0.aar

12 MB
Binary file not shown.

release_notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
card.io Android SDK change log and release notes
22
================================================
33

4+
5.1.0
5+
-----
6+
* Add arm64-v8a processor support [#33-source](https://github.com/card-io/card.io-Android-source/issues/33), [#51](https://github.com/card-io/card.io-Android-SDK/issues/51).
7+
* Add x86 processor support [#26-source](https://github.com/card-io/card.io-Android-source/issues/26).
8+
* Add x86_64 processor support.
9+
* Add support for Android 23 new permission model for the Camera permission [#78](https://github.com/card-io/card.io-Android-SDK/issues/78). When permission is granted, the SDK performs as in previous versions. When permission is or has already been denied, the SDK falls back to manual entry. Note: this SDK does not call the `shouldShowRequestPermissionRationale()` method and does not show a rationale. It is up to the implementor whether or not to show the Camera permission rationale before opening the SDK.
10+
* Populate CardIOActivity.EXTRA_CAPTURED_CARD_IMAGE when confirmation is shown [#10-source](https://github.com/card-io/card.io-Android-source/issues/10).
11+
* Fix issue where setting `EXTRA_KEEP_APPLICATION_THEME` would not create buttons that matched the theme [#24-source](https://github.com/card-io/card.io-Android-source/issues/24).
12+
* Add a default edit text hint color [#22-source](https://github.com/card-io/card.io-Android-source/issues/22).
13+
* Fix leaking IntentReceiver [#76](https://github.com/card-io/card.io-Android-SDK/issues/76).
14+
415
5.0.1
516
-----
617
* Prevent screenshots when the app is backgrounded via [FLAG_SECURE](http://developer.android.com/reference/android/view/WindowManager.LayoutParams.html#FLAG_SECURE).

0 commit comments

Comments
 (0)