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

Commit

Permalink
Update library to 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Brateman committed Oct 1, 2015
1 parent 55e87be commit d800c00
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ All releases follow [semantic versioning](http://semver.org/).
The latest version is available via `mavenCentral()`. Just add the following dependency:

```
compile 'io.card:android-sdk:5.0.1'
compile 'io.card:android-sdk:5.1.0'
```

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

```
compile 'io.card:android-sdk:5.0.1'
compile 'io.card:android-sdk:5.1.0'
```

##### If you use something other than gradle, then:
Expand Down
8 changes: 4 additions & 4 deletions SampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.1'
classpath 'com.android.tools.build:gradle:1.3.0'
}
}

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

android {
compileSdkVersion 21
buildToolsVersion '21.1.2'
compileSdkVersion 23
buildToolsVersion '23.0.1'

signingConfigs {
myConfig {
Expand Down Expand Up @@ -52,7 +52,7 @@ dependencies {
if (parent != null) {
compile project(':card.io')
} else {
compile 'io.card:android-sdk:5.0.1'
compile 'io.card:android-sdk:5.1.0'
}
}

7 changes: 7 additions & 0 deletions SampleApp/src/main/res/values-v21/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="android:Theme.Material">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>
6 changes: 6 additions & 0 deletions SampleApp/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="android:Theme.Black">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
Binary file removed aars/card.io-5.0.1.aar
Binary file not shown.
Binary file added aars/card.io-5.1.0.aar
Binary file not shown.
11 changes: 11 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
card.io Android SDK change log and release notes
================================================

5.1.0
-----
* 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).
* Add x86 processor support [#26-source](https://github.com/card-io/card.io-Android-source/issues/26).
* Add x86_64 processor support.
* 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.
* Populate CardIOActivity.EXTRA_CAPTURED_CARD_IMAGE when confirmation is shown [#10-source](https://github.com/card-io/card.io-Android-source/issues/10).
* 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).
* Add a default edit text hint color [#22-source](https://github.com/card-io/card.io-Android-source/issues/22).
* Fix leaking IntentReceiver [#76](https://github.com/card-io/card.io-Android-SDK/issues/76).

5.0.1
-----
* Prevent screenshots when the app is backgrounded via [FLAG_SECURE](http://developer.android.com/reference/android/view/WindowManager.LayoutParams.html#FLAG_SECURE).
Expand Down

0 comments on commit d800c00

Please sign in to comment.