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

Commit

Permalink
Release 2.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Patel committed Nov 7, 2016
1 parent d66ba2e commit 04f7251
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
PayPal Android SDK release notes
================================

2.15.1
------
* Removed trustall trustmanager to resolve google play security issue [#364](https://github.com/paypal/PayPal-Android-SDK/issues/364).
* Shows amount properly in all devices [#357](https://github.com/paypal/PayPal-Android-SDK/issues/357).

2.15.0
------
* Add support for third-party receivers [iOS #140](https://github.com/paypal/PayPal-iOS-SDK/issues/140). Available as an optional property, `PayPalPayment.payeeEmail()`. This property is only available for PayPal payments, not Direct Credit Card (DCC) payments.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The PayPal Android SDK makes it easy to add PayPal payments to mobile apps.
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.15.0'
compile 'com.paypal.sdk:paypal-android-sdk:2.15.1'
```


Expand Down Expand Up @@ -126,7 +126,7 @@ The SDK supports multiple currencies. See [the REST API country and currency doc
Disabling Direct Credit Card Payments is now preferred. 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.15.0') {
compile('com.paypal.sdk:paypal-android-sdk:2.15.1') {
exclude group: 'io.card'
}
}
Expand Down
6 changes: 3 additions & 3 deletions SampleApp-Kotlin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.0.1-2'
ext.kotlin_version = '1.0.4'
repositories {
jcenter()
mavenCentral()
Expand Down Expand Up @@ -78,9 +78,9 @@ android {

dependencies {
if (parent != null) {
compile project(path: ':androidSDK')
compile project(path: ':androidSDK', configuration: 'generalDebug')
} else {
compile('com.paypal.sdk:paypal-android-sdk:2.15.0')
compile('com.paypal.sdk:paypal-android-sdk:2.15.1')
}
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
Expand Down
2 changes: 1 addition & 1 deletion SampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ dependencies {
generalCompile project(path: ':androidSDK', configuration: 'generalDebug')
partnerCompile project(path: ':androidSDK', configuration: 'partnerDebug')
} else {
compile('com.paypal.sdk:paypal-android-sdk:2.15.0')
compile('com.paypal.sdk:paypal-android-sdk:2.15.1')
}
compile 'com.google.android.gms:play-services-wallet:8.4.0'

Expand Down
Binary file removed aars/PayPalAndroidSDK-2.15.0.aar
Binary file not shown.
Binary file added aars/PayPalAndroidSDK-2.15.1.aar
Binary file not shown.

0 comments on commit 04f7251

Please sign in to comment.