Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Release 5.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments authored and jenkins committed Sep 9, 2020
1 parent dd264bf commit 4765990
Show file tree
Hide file tree
Showing 35 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/assets/initial_logo_mapping.list
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
201=/templates/master/global/css/img/ppimages/pp_logo_201_v1.png
302=/templates/master/global/css/img/ppimages/pp_logo_302_v1.png
320=/templates/master/global/css/img/ppimages/pp_logo_320_v1.png
402=/templates/master/global/css/img/ppimages/pp_logo_402_v1.png
402=/templates/master/global/css/img/ppimages/pp_logo_402_v2.png
420=/templates/master/global/css/img/ppimages/pp_logo_420_v1.png
430=/templates/master/global/css/img/ppimages/pp_logo_430_v1.png
500=/templates/master/global/css/img/ppimages/pp_logo_500_v1.png
Expand Down
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_114.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-hdpi/pp_logo_114_v2.png
Binary file not shown.
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_117.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-hdpi/pp_logo_117_v3.png
Binary file not shown.
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_119.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-hdpi/pp_logo_119_v4.png
Binary file not shown.
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_122.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-hdpi/pp_logo_122_v2.png
Binary file not shown.
Binary file removed app/src/main/res/drawable-hdpi/pp_logo_1_v2.png
Binary file not shown.
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-hdpi/pp_logo_2_v2.png
Binary file not shown.
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-hdpi/pp_logo_3_v3.png
Binary file not shown.
Binary file modified app/src/main/res/drawable-hdpi/pp_logo_402.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# org.gradle.parallel=true
POM_GROUP_ID=com.ingenico.connect.gateway
POM_ARTIFACT_ID=connect-sdk-client-android
POM_VERSION=5.2.0
POM_VERSION=5.3.0
POM_NAME=connect-sdk-client-android
POM_DESCRIPTION=SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Client API
POM_URL=https://github.com/Ingenico-ePayments/connect-sdk-client-android
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ protected ThirdPartyStatus doInBackground(String ... params) {
return response.getThirdPartyStatus();
}

@Override
protected void onPostExecute(ThirdPartyStatus thirdPartyStatus) {

// Call listener callback
listener.onThirdPartyStatusCallComplete(thirdPartyStatus);
}

/**
* Interface for OnThirdPartyStatusCallCompleteListener
* Is called from the ThirdPartyStatusAsyncTask when it has retrieved a ThirdPartyStatus for the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public class Constants {

/** SDK version **/
public final static String SDK_IDENTIFIER = "AndroidClientSDK/v5.2.0";
public final static String SDK_IDENTIFIER = "AndroidClientSDK/v5.3.0";

/** SDK creator **/
public final static String SDK_CREATOR = "Ingenico";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class BasicPaymentProduct implements BasicPaymentItem, Serializable {
private Boolean allowsTokenization;
private Boolean autoTokenized;
private Boolean usesRedirectionTo3rdParty;
private Boolean allowsInstallments;
private MobileIntegrationLevel mobileIntegrationLevel;
private DisplayHintsPaymentItem displayHints;

Expand Down Expand Up @@ -77,6 +78,10 @@ public Boolean usesRedirectionTo3rdParty(){
return usesRedirectionTo3rdParty;
}

public Boolean allowsInstallments() {
return allowsInstallments;
}

public MobileIntegrationLevel mobileIntegrationLevel(){
return mobileIntegrationLevel;
}
Expand Down

0 comments on commit 4765990

Please sign in to comment.