Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

Commit

Permalink
Release 2.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sankarbhavanib committed Apr 5, 2016
1 parent c3f75f9 commit bd1bb02
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 695 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
PayPal Android SDK release notes
================================

2.14.1
------
* Update card.io to 5.3.2.
* Add proguard config to aar file.
* Minor bug fixes.

2.14.0
------
* Updated `minSdkVersion` to 16. This is the minimum Android version to communicate over TLSv1.2, which is required to support [a Payment Card Industry (PCI) Council mandate](http://blog.pcisecuritystandards.org/migrating-from-ssl-and-early-tls). All organizations that handle credit card information are required to comply with this standard. As part of this obligation, [PayPal is updating its services](https://github.com/paypal/tls-update) to require TLSv1.2 for all HTTPS connections. To override the minSdkVersion, please see [the readme](https://github.com/paypal/PayPal-Android-SDK/blob/master/README.md#override-minsdkversion).
* Updated `minSdkVersion` to 16. This is the minimum Android version to communicate over TLSv1.2, which is required to support [a Payment Card Industry (PCI) Council mandate](http://blog.pcisecuritystandards.org/migrating-from-ssl-and-early-tls). All organizations that handle credit card information are required to comply with this standard. As part of this obligation, [PayPal is updating its services](https://github.com/paypal/tls-update) to require TLSv1.2 for all HTTPS connections. To override the minSdkVersion, please see [the readme](https://github.com/paypal/PayPal-Android-SDK/blob/develop/sdk/README.md#override-minsdkversion).
* Update okhttp dependency to 3.2.0.
* Fixes issue related to non-ascii characters in user agent [#271](https://github.com/paypal/PayPal-Android-SDK/issues/271).

Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The PayPal Android SDK makes it easy to add PayPal and credit card payments to m
The PayPal Android SDK is now available at [Maven Repository](https://repo1.maven.org/maven2/com/paypal/sdk/paypal-android-sdk/). The latest version is available via `mavenCentral()`:

```groovy
compile 'com.paypal.sdk:paypal-android-sdk:2.14.0'
compile 'com.paypal.sdk:paypal-android-sdk:2.14.1'
```


Expand Down Expand Up @@ -162,7 +162,7 @@ packagingOptions {
If you want to completely disable Direct Credit Card (DCC) payments, exclude the card.io library in your application `build.gradle`:
```groovy
dependencies {
compile('com.paypal.sdk:paypal-android-sdk:2.14.0') {
compile('com.paypal.sdk:paypal-android-sdk:2.14.1') {
exclude group: 'io.card'
}
}
Expand Down Expand Up @@ -237,4 +237,4 @@ Please read our [contributing guidelines](CONTRIBUTING.md) prior to submitting a

## License

Please refer to this repo's [license file](LICENSE.txt).
Please refer to this repo's [license file](LICENSE).
4 changes: 2 additions & 2 deletions SampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ android {

release{
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'paypal-proguard.cnf'
proguardFile getDefaultProguardFile('proguard-android.txt')
signingConfig signingConfigs.release
}
}
Expand Down Expand Up @@ -87,7 +87,7 @@ dependencies {
generalCompile project(path: ':androidSDK', configuration: 'generalDebug')
partnerCompile project(path: ':androidSDK', configuration: 'partnerDebug')
} else {
compile('com.paypal.sdk:paypal-android-sdk:2.14.0')
compile('com.paypal.sdk:paypal-android-sdk:2.14.1')
}
compile 'com.google.android.gms:play-services-wallet:8.1.0'

Expand Down
100 changes: 0 additions & 100 deletions SampleApp/paypal-proguard.cnf

This file was deleted.

This file was deleted.

Loading

0 comments on commit bd1bb02

Please sign in to comment.