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.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Patel committed Jan 31, 2017
1 parent 04f7251 commit 449af8d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
PayPal Android SDK release notes
================================

2.15.2
------
* Add mandatory res folder in aar during release [#383](https://github.com/paypal/PayPal-Android-SDK/issues/383).
* Updated card.io to 5.5.0.
* Updated okhttp to 3.6.0.

2.15.1
------
* Removed trustall trustmanager to resolve google play security issue [#364](https://github.com/paypal/PayPal-Android-SDK/issues/364).
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.1'
compile 'com.paypal.sdk:paypal-android-sdk:2.15.2'
```


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.1') {
compile('com.paypal.sdk:paypal-android-sdk:2.15.2') {
exclude group: 'io.card'
}
}
Expand Down
2 changes: 1 addition & 1 deletion SampleApp-Kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ dependencies {
if (parent != null) {
compile project(path: ':androidSDK', configuration: 'generalDebug')
} else {
compile('com.paypal.sdk:paypal-android-sdk:2.15.1')
compile('com.paypal.sdk:paypal-android-sdk:2.15.2')
}
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.1')
compile('com.paypal.sdk:paypal-android-sdk:2.15.2')
}
compile 'com.google.android.gms:play-services-wallet:8.4.0'

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

0 comments on commit 449af8d

Please sign in to comment.