Skip to content

Commit 2a83e16

Browse files
author
Ildar Gumirov
committed
[MDD-1022][feature] payment callback fix in case 3DS
1 parent cbfcc5e commit 2a83e16

File tree

7 files changed

+160
-161
lines changed

7 files changed

+160
-161
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88

99
# Xcode user data
1010
MondidoIOS-SDK.xcodeproj/xcuserdata/*
11+
MondidoIOS-SDK.xcodeproj/project.xcworkspace/*

MondidoIOS-SDK.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,10 +446,12 @@
446446
CLANG_ENABLE_OBJC_ARC = YES;
447447
CODE_SIGN_IDENTITY = "iPhone Developer";
448448
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
449+
CURRENT_PROJECT_VERSION = 1.4;
449450
GCC_PRECOMPILE_PREFIX_HEADER = YES;
450451
GCC_PREFIX_HEADER = "MondidoIOS-SDK/MondidoIOS-SDK-Prefix.pch";
451452
INFOPLIST_FILE = "MondidoIOS-SDK/MondidoIOS-SDK-Info.plist";
452453
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
454+
MARKETING_VERSION = 1.4;
453455
PRODUCT_BUNDLE_IDENTIFIER = "com.sugarcubesolutions.${PRODUCT_NAME:rfc1034identifier}";
454456
PRODUCT_NAME = "$(TARGET_NAME)";
455457
PROVISIONING_PROFILE = "";
@@ -464,10 +466,12 @@
464466
CLANG_ENABLE_OBJC_ARC = YES;
465467
CODE_SIGN_IDENTITY = "iPhone Developer";
466468
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
469+
CURRENT_PROJECT_VERSION = 1.4;
467470
GCC_PRECOMPILE_PREFIX_HEADER = YES;
468471
GCC_PREFIX_HEADER = "MondidoIOS-SDK/MondidoIOS-SDK-Prefix.pch";
469472
INFOPLIST_FILE = "MondidoIOS-SDK/MondidoIOS-SDK-Info.plist";
470473
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
474+
MARKETING_VERSION = 1.4;
471475
PRODUCT_BUNDLE_IDENTIFIER = "com.sugarcubesolutions.${PRODUCT_NAME:rfc1034identifier}";
472476
PRODUCT_NAME = "$(TARGET_NAME)";
473477
PROVISIONING_PROFILE = "";

MondidoIOS-SDK/MondidoBase.h

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// MondidoIOS-SDK
44
//
55
// Created by Robert Pohl on 18/02/14.
6-
// Copyright (c) 2014 Mondido Payments. All rights reserved.
7-
// Version 1.0
6+
// Copyright (c) 2020 Mondido Payments. All rights reserved.
7+
// Version 1.4
88

99
#import <Foundation/Foundation.h>
1010
#import <WebKit/WebKit.h>
@@ -13,12 +13,11 @@
1313
typedef enum PaymentStatus : NSInteger PaymentStatus;
1414
enum PaymentStatus : NSInteger {
1515
STARTED,
16-
SUCCESS,
17-
FAILED,
18-
ERROR
16+
SUCCESS,
17+
FAILED,
18+
ERROR
1919
};
2020

21-
2221
@interface MondidoBase : NSObject<WKNavigationDelegate, WKUIDelegate>{
2322
}
2423

@@ -46,7 +45,6 @@ enum PaymentStatus : NSInteger {
4645
@property (nonatomic, retain) NSString *store_card;
4746
@property (nonatomic, retain) NSString *vat_amount;
4847

49-
5048
- (NSString *) md5:NSString;
5149
- (NSString *) randomOrderId;
5250
- (NSString *) createHash;

0 commit comments

Comments
 (0)