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

Commit

Permalink
Release 2.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sankarbhavanib committed Feb 23, 2016
1 parent e77fe11 commit 001950e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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()`. Just add the following dependency from `mavenCentral()`:

```
compile 'com.paypal.sdk:paypal-android-sdk:2.13.2'
compile 'com.paypal.sdk:paypal-android-sdk:2.13.3'
```


Expand Down Expand Up @@ -160,7 +160,7 @@ If you want to disable credit card completely:
1. Exclude card.io library in your application build.gradle file:
```
dependencies {
compile('com.paypal.sdk:paypal-android-sdk:2.13.2') {
compile('com.paypal.sdk:paypal-android-sdk:2.13.3') {
exclude group: 'io.card'
}
}
Expand Down
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
proguardFile file('paypal-proguard.cnf')
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'paypal-proguard.cnf'
signingConfig signingConfigs.release
}
}
Expand All @@ -81,7 +81,7 @@ dependencies {
if (parent != null) {
compile project(path: ':androidSDK', configuration: 'generalDebug')
} else {
compile('com.paypal.sdk:paypal-android-sdk:2.13.2')
compile('com.paypal.sdk:paypal-android-sdk:2.13.3')
}
compile 'com.google.android.gms:play-services-wallet:8.1.0'

Expand Down
4 changes: 4 additions & 0 deletions SampleApp/paypal-proguard.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@
public protected *;
}

# This is added for okhttp 3.1.2 bug fix as shown at https://github.com/square/okhttp/issues/2323
-keepclassmembers class * implements javax.net.ssl.SSLSocketFactory {
private javax.net.ssl.SSLSocketFactory delegate;
}

# -------- PayPal SDK ----------
# (does not include card.io)
Expand Down
Binary file removed aars/PayPalAndroidSDK-2.13.2.aar
Binary file not shown.
Binary file added aars/PayPalAndroidSDK-2.13.3.aar
Binary file not shown.
7 changes: 6 additions & 1 deletion release_notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
PayPal Android SDK release notes
================================

2.13.3
------
* Update okhttp dependency to 3.1.2.
* Really fixes issue related to okhttp 3.1.2 [#258](https://github.com/paypal/PayPal-Android-SDK/issues/258).

2.13.2
------
* Fixes issue related to okhttp v3.1.2 [#258](https://github.com/paypal/PayPal-Android-SDK/issues/258)
* Fixes issue related to okhttp 3.1.2 [#258](https://github.com/paypal/PayPal-Android-SDK/issues/258).

2.13.1
------
Expand Down

0 comments on commit 001950e

Please sign in to comment.