Skip to content

Commit

Permalink
2.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
adyen-git-manager committed Jun 18, 2019
1 parent 44e6af3 commit da3e8c9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To give you as much flexibility as possible, our Android SDK can be integrated i
Import the quick integration modules by adding these lines to your build.gradle file.

```groovy
final checkoutVersion = "2.4.4"
final checkoutVersion = "2.4.5"
implementation "com.adyen.checkout:ui:${checkoutVersion}"
implementation "com.adyen.checkout:nfc:${checkoutVersion}" // Optional; Integrates NFC card reader in card UI
implementation "com.adyen.checkout:wechatpay:${checkoutVersion}" // Optional; Integrates support for WeChat Pay
Expand Down Expand Up @@ -50,7 +50,7 @@ After receiving the payment session data from your own server, use the `Checkout
String encodedPaymentSession = ...;
CheckoutController.handlePaymentSessionResponse(/*Activity*/ this, encodedPaymentSession, new StartPaymentParametersHandler() {
@Override
public void onStartPaymentParameters(@NonNull StartPaymentParameters startPaymentParameters) {
public void onPaymentInitialized(@NonNull StartPaymentParameters startPaymentParameters) {
// TODO: Start the desired checkout process.
}

Expand Down Expand Up @@ -136,7 +136,7 @@ By default, we use the font that is declared in the theme that is used for check
#### Installation
Import the following modules by adding these line to your `build.gradle` file.
```groovy
final checkoutVersion = "2.4.4"
final checkoutVersion = "2.4.5"
implementation "com.adyen.checkout:core:${checkoutVersion}"
implementation "com.adyen.checkout:core-card:${checkoutVersion}" // Optional; Required for processing card payments.
implementation "com.adyen.checkout:nfc:${checkoutVersion}" // Optional; Enables reading of card information with the device"s NFC chip.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ ext {
"com.tencent.mm.opensdk:wechat-sdk-android-without-mta:9a15154c07c05eadba8351c110647c1754316e32d8f12f55e24679891b52739c:SHA-256",
]

versionCode = 244
versionName = "2.4.4"
versionCode = 245
versionName = "2.4.5"

testCoverageEnabled = true
}
Expand Down
2 changes: 1 addition & 1 deletion checkout-threeds/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
dependencies {
implementation "com.android.support:support-annotations:${rootProject.supportLibVersion}"

implementation("com.adyen.threeds:adyen-3ds2:0.9.6") {
api("com.adyen.threeds:adyen-3ds2:2.1.0-rc01") {
exclude group: 'com.android.support', module: 'appcompat-v7'
}

Expand Down
4 changes: 4 additions & 0 deletions checkout-ui/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
<item name="windowActionBar">false</item>
</style>

<style name="ThreeDS2Theme"
parent="AppTheme.Checkout"
tools:ignore="PrivateResource"/>

<style name="Checkout" />

<declare-styleable name="CheckoutTints">
Expand Down

0 comments on commit da3e8c9

Please sign in to comment.