Skip to content

Commit

Permalink
Release Beta 0.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zatyanuar committed Mar 7, 2019
1 parent 9f0eda5 commit fdaea16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private void startMolpay(MethodCall call, Result result) {
HashMap<String, Object> paymentDetails = new HashMap<>();
paymentDetails.put("is_submodule", true);
paymentDetails.put("module_id", "molpay-mobile-xdk-flutter-beta-android");
paymentDetails.put("wrapper_version", "0");
paymentDetails.put("wrapper_version", "1");
paymentDetails.put("mp_credit_card_no", call.argument(""));
paymentDetails.put("mp_credit_card_expiry", call.argument(""));
paymentDetails.put("mp_credit_card_cvv", call.argument(""));
Expand Down
6 changes: 3 additions & 3 deletions ios/Classes/MolpayMobileXdkFlutterBetaPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ -(void)startMolpay{
isPaymentInstructionPresent = NO;
isCloseButtonClick = NO;

[paymentDetailsMutable setObject:[NSNumber numberWithBool:YES] forKey:@"is_submodule"];
[paymentDetailsMutable setObject:@"molpay-mobile-xdk-flutter-beta-ios" forKey:@"module_id"];
[paymentDetailsMutable setObject:@"0" forKey:@"wrapper_version"];
[paymentDetailsMutable setObject:[NSNumber numberWithBool:YES] forKey:@"is_submodule"];
[paymentDetailsMutable setObject:@"molpay-mobile-xdk-flutter-beta-ios" forKey:@"module_id"];
[paymentDetailsMutable setObject:@"1" forKey:@"wrapper_version"];

mp = [[MOLPayLib alloc] initWithDelegate:self andPaymentDetails:paymentDetailsMutable];

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: molpay_mobile_xdk_flutter_beta
description: MOLPay mobile payment for Flutter (BETA)
version: 0.23.0
version: 0.23.1
author: MOLPay Mobile Division <[email protected]>
homepage: https://github.com/MOLPay/molpay-mobile-xdk-flutter-beta

Expand Down

0 comments on commit fdaea16

Please sign in to comment.