Skip to content

Commit

Permalink
Merge pull request #583 from veritrans/release/release-1.24.0
Browse files Browse the repository at this point in the history
Release/release 1.24.0
  • Loading branch information
uziwuzzy authored Feb 17, 2023
2 parents 7795875 + 912a9b1 commit 5b7f7e8
Show file tree
Hide file tree
Showing 28 changed files with 480 additions and 2,740 deletions.
2 changes: 1 addition & 1 deletion MidtransCoreKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "MidtransCoreKit"
s.version = "1.23.0"
s.version = "1.24.0"
s.summary = "Veritrans mobile SDK beta version"
s.homepage = "https://veritrans.co.id/"
s.license = 'MIT'
Expand Down
4 changes: 2 additions & 2 deletions MidtransCoreKit/MidtransCoreKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1754,7 +1754,7 @@
"$(inherited)",
"$(PROJECT_DIR)/MidtransCoreKit/RG",
);
MARKETING_VERSION = 1.23.0;
MARKETING_VERSION = 1.24.0;
PRODUCT_BUNDLE_IDENTIFIER = com.midtrans.MidtransCoreKit;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1790,7 +1790,7 @@
"$(inherited)",
"$(PROJECT_DIR)/MidtransCoreKit/RG",
);
MARKETING_VERSION = 1.23.0;
MARKETING_VERSION = 1.24.0;
PRODUCT_BUNDLE_IDENTIFIER = com.midtrans.MidtransCoreKit;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
3 changes: 2 additions & 1 deletion MidtransCoreKit/MidtransCoreKit/MidtransConstant.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* error domain
*/

static NSString * const MIDTRANS_SDK_CURRENT_VERSION = @"1.23.0";
static NSString * const MIDTRANS_SDK_CURRENT_VERSION = @"1.24.0";
static NSString * const MIDTRANS_CUSTOMFIELD_1 = @"custom_field1";
static NSString * const MIDTRANS_CUSTOMFIELD_2 = @"custom_field2";
static NSString * const MIDTRANS_CUSTOMFIELD_3 = @"custom_field3";
Expand Down Expand Up @@ -59,6 +59,7 @@ static NSString * const MIDTRANS_PAYMENT_VA = @"va";
static NSString * const MIDTRANS_PAYMENT_QRIS = @"qris";
static NSString * const MIDTRANS_PAYMENT_SHOPEEPAY = @"shopeepay";
static NSString * const MIDTRANS_PAYMENT_QRIS_SHOPEEPAY = @"qrisshopeepay";
static NSString * const MIDTRANS_PAYMENT_QRIS_GOPAY = @"qrisgopay";
static NSString * const MIDTRANS_PAYMENT_UOB = @"uob_ezpay";

static NSString * const MIDTRANS_PAYMENT_BRI_EPAY = @"bri_epay";
Expand Down
3 changes: 2 additions & 1 deletion MidtransCoreKit/MidtransCoreKit/MidtransTransactionResult.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
/**
The date and time when transaction recorded.
*/
@property(nonatomic, readonly) NSDate *transactionTime;
@property(nonatomic, readonly) NSString *transactionTime;

/**
The order ID for this transaction. This value is generated client-side.
Expand Down Expand Up @@ -88,6 +88,7 @@
@property (nonatomic, readonly) NSURL *redirectURL;
@property (nonatomic,readonly) NSURL *qr_code_url;
@property (nonatomic,readonly) NSURL *deeplink_url;
@property (nonatomic,readonly) NSString *qrisExpirationRaw;

@property (nonatomic,readonly) NSString *threeDSVersion;

Expand Down
13 changes: 4 additions & 9 deletions MidtransCoreKit/MidtransCoreKit/MidtransTransactionResult.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ @interface MidtransTransactionResult()
@property (nonatomic, readwrite) NSString *orderId;
@property (nonatomic, readwrite) NSString *paymentType;
@property (nonatomic, readwrite) NSDictionary *additionalData;
@property (nonatomic, readwrite) NSDate *transactionTime;
@property (nonatomic, readwrite) NSString *transactionTime;
@property (nonatomic, readwrite) NSString *qrisExpirationRaw;
@property (nonatomic, readwrite) NSNumber *grossAmount;
@property (nonatomic, readwrite) NSString *indomaretPaymentCode;
@property (nonatomic, readwrite) NSString *alfamartExpireTime;
Expand Down Expand Up @@ -53,14 +54,8 @@ - (instancetype)initWithTransactionResponse:(NSDictionary *)response {
if (rawGrossAmount) {
self.grossAmount = @([rawGrossAmount doubleValue]);
}

id rawTransactionTime = [mResponse objectThenDeleteForKey:@"transaction_time"];
if (rawTransactionTime) {
NSDateFormatter *formatter = [NSObject dateFormatterWithIdentifier:@"vt.date"];
formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";
self.transactionTime = [formatter dateFromString:rawTransactionTime];
}

self.transactionTime = [mResponse objectThenDeleteForKey:@"transaction_time"];
self.qrisExpirationRaw = [mResponse objectThenDeleteForKey:@"qris_expiration_raw"];
if (response[@"saved_token_id" ]) {
NSDictionary *maskedCardObject = @{@"masked_card":response[@"masked_card"],
@"saved_token_id":response[@"saved_token_id"],
Expand Down
27 changes: 2 additions & 25 deletions MidtransDemo/MidtransDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,6 @@
E56436EE1E83A72F008726D0 /* Sources */,
E56436EF1E83A72F008726D0 /* Frameworks */,
E56436F01E83A72F008726D0 /* Resources */,
E56FD2FF21802B5C00AAA098 /* ShellScript */,
EC135A9896725303FB9B255A /* [CP] Copy Pods Resources */,
DD64CE3225382F6A0069F4B4 /* Embed Frameworks */,
);
Expand Down Expand Up @@ -734,15 +733,11 @@
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-MidtransDemo-checkManifestLockResult.txt",
);
Expand All @@ -751,31 +746,13 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
E56FD2FF21802B5C00AAA098 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)",
);
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "FabricApiKey=$(sed -n '2p' < fabric_config.txt)\nFabricSecretKey=$(sed -n '4p' < fabric_config.txt)\nINFO_PLIST=\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"\n/usr/libexec/PlistBuddy -c \"Set :Fabric:APIKey $FabricApiKey\" \"$INFO_PLIST\"\n\n\"${PODS_ROOT}/Fabric/run\" $FabricApiKey $FabricSecretKey\n";
};
EC135A9896725303FB9B255A /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-MidtransDemo/Pods-MidtransDemo-resources.sh",
"${SRCROOT}/Pods/Target Support Files/Pods-MidtransDemo/Pods-MidtransDemo-resources.sh",
"${PODS_CONFIGURATION_BUILD_DIR}/BKMoneyKit/BKMoneyKit.bundle",
);
name = "[CP] Copy Pods Resources";
Expand All @@ -784,7 +761,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MidtransDemo/Pods-MidtransDemo-resources.sh\"\n";
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MidtransDemo/Pods-MidtransDemo-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down
3 changes: 0 additions & 3 deletions MidtransDemo/MidtransDemo/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@
#import "MDProductViewController.h"
#import "MDUtils.h"
#import <MidtransCoreKit/MidtransCoreKit.h>
#import <Crashlytics/Crashlytics.h>
#import "MDNavigationViewController.h"
#import "MDOptionManager.h"
#import <Fabric/Fabric.h>
@interface AppDelegate ()

@end
Expand Down Expand Up @@ -65,7 +63,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
*/
[MDOptionManager shared];

[Fabric with:@[[Crashlytics class]]];
MDProductViewController *pvc = [[MDProductViewController alloc] initWithNibName:@"MDProductViewController" bundle:nil];
MDOptionsViewController *ovc = [[MDOptionsViewController alloc] initWithNibName:@"MDOptionsViewController" bundle:nil];
MDNavigationViewController *nvc = [MDNavigationViewController new];
Expand Down
14 changes: 0 additions & 14 deletions MidtransDemo/MidtransDemo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,6 @@
</array>
<key>CFBundleVersion</key>
<string>78</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
<string></string>
<key>Kits</key>
<array>
<dict>
<key>KitInfo</key>
<dict/>
<key>KitName</key>
<string>Crashlytics</string>
</dict>
</array>
</dict>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
Expand Down
8 changes: 4 additions & 4 deletions MidtransDemo/MidtransDemo/MDOrderViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ - (void)viewDidLoad {
CC_CONFIG.paymentType = [[MDOptionManager shared].ccTypeOption.value integerValue];
switch (CC_CONFIG.paymentType) {
case MTCreditCardPaymentTypeOneclick:
clientkey = DEMO_STORE_MERCHANT_CLIENT_KEY_SANDBOX;
merchantServer = DEMO_STORE_MERCHANT_SERVER_URL_SANDBOX;
clientkey = FIESTAPOINT_MERCHANT_CLIENT_KEY_SANDBOX;
merchantServer = FIESTAPOINT_MERCHANT_SERVER_URL_SANDBOX;
break;
default:
clientkey = DEMO_STORE_MERCHANT_CLIENT_KEY_SANDBOX;
merchantServer = DEMO_STORE_MERCHANT_SERVER_URL_SANDBOX;
clientkey = FIESTAPOINT_MERCHANT_CLIENT_KEY_SANDBOX;
merchantServer = FIESTAPOINT_MERCHANT_SERVER_URL_SANDBOX;
break;
}
[CONFIG setClientKey:clientkey
Expand Down
2 changes: 1 addition & 1 deletion MidtransDemo/MidtransDemo/MidtransDemoAppConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static NSString * const DEMO_STORE_MERCHANT_CLIENT_KEY_SANDBOX = @"VT-client-yrH
static NSString * const PROMO_MERCHANT_SERVER_URL_SANDBOX = @"https://charmenzy-mid-mobile-sandbox.herokuapp.com/";
static NSString * const PROMO_MERCHANT_CLIENT_KEY_SANDBOX = @"SB-Mid-client-zt7XrRxPQXZNvuBY";

static NSString * const FIESTAPOINT_MERCHANT_SERVER_URL_SANDBOX = @"https://fiesta-point-sample.herokuapp.com/";
static NSString * const FIESTAPOINT_MERCHANT_SERVER_URL_SANDBOX = @"https://snap-merchant-server.herokuapp.com/api/";
static NSString * const FIESTAPOINT_MERCHANT_CLIENT_KEY_SANDBOX = @"SB-Mid-client-hOWJXiCCDRvT0RGr";

static NSString * const SHOPEEPAY_MERCHANT_SERVER_URL_PRODUCTION = @"https://shopeepay-merchant-server.herokuapp.com/";
Expand Down
2 changes: 0 additions & 2 deletions MidtransDemo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ target 'MidtransDemo' do
pod 'JGProgressHUD'
pod 'ACFloatingTextfield-Objc'
pod 'IQKeyboardManager'
pod 'Fabric'
pod 'Crashlytics'
pod 'BKMoneyKit', '~> 0.0'

# pod 'MidtransKit', :path => '../'
Expand Down
4 changes: 2 additions & 2 deletions MidtransKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "MidtransKit"
s.version = "1.23.0"
s.version = "1.24.0"
s.summary = "Veritrans mobile SDK beta version"
s.homepage = "https://veritrans.co.id/"
s.license = 'MIT'
Expand All @@ -17,7 +17,7 @@ s.source_files = 'MidtransKit/MidtransKit/**/*.{h,m}'
s.resource_bundles = {
'MidtransKit' => ['MidtransKit/MidtransKit/resources/*']
}
s.dependency 'MidtransCoreKit', '1.23.0'
s.dependency 'MidtransCoreKit', '1.24.0'
s.static_framework = true
s.default_subspec = 'UI'

Expand Down
22 changes: 20 additions & 2 deletions MidtransKit/MidtransKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,12 @@
DDD9624B255C715D00E81AE5 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDD96222255C715C00E81AE5 /* [email protected] */; };
DDD9624C255C715D00E81AE5 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDD96223255C715C00E81AE5 /* [email protected] */; };
DDD9624D255C715D00E81AE5 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDD96223255C715C00E81AE5 /* [email protected] */; };
DDE86E562975FBEF0084FC2F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDE86E502975FBEF0084FC2F /* [email protected] */; };
DDE86E572975FBEF0084FC2F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDE86E502975FBEF0084FC2F /* [email protected] */; };
DDE86E582975FBEF0084FC2F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDE86E542975FBEF0084FC2F /* [email protected] */; };
DDE86E592975FBEF0084FC2F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDE86E542975FBEF0084FC2F /* [email protected] */; };
DDE86E5A2975FBEF0084FC2F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDE86E552975FBEF0084FC2F /* [email protected] */; };
DDE86E5B2975FBEF0084FC2F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = DDE86E552975FBEF0084FC2F /* [email protected] */; };
E519C9621E9B6F2000EF70DF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = E519C9531E9B6F2000EF70DF /* [email protected] */; };
E519C9631E9B6F2000EF70DF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = E519C9531E9B6F2000EF70DF /* [email protected] */; };
E519C9661E9B6F2000EF70DF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = E519C9551E9B6F2000EF70DF /* [email protected] */; };
Expand Down Expand Up @@ -1791,6 +1797,9 @@
DDD96221255C715C00E81AE5 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "resources/[email protected]"; sourceTree = "<group>"; };
DDD96222255C715C00E81AE5 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "resources/[email protected]"; sourceTree = "<group>"; };
DDD96223255C715C00E81AE5 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "resources/[email protected]"; sourceTree = "<group>"; };
DDE86E502975FBEF0084FC2F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "resources/[email protected]"; sourceTree = "<group>"; };
DDE86E542975FBEF0084FC2F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "resources/[email protected]"; sourceTree = "<group>"; };
DDE86E552975FBEF0084FC2F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "resources/[email protected]"; sourceTree = "<group>"; };
E503AECB1C8E889C00F097FF /* VTVAListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VTVAListController.h; path = classes/VTVAListController.h; sourceTree = "<group>"; };
E503AECC1C8E889C00F097FF /* VTVAListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VTVAListController.m; path = classes/VTVAListController.m; sourceTree = "<group>"; };
E503AED51C8E8AF800F097FF /* MidtransUIListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MidtransUIListCell.h; path = classes/MidtransUIListCell.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -2690,6 +2699,9 @@
30AB739C1C7D57B6001F42FE /* Assets */ = {
isa = PBXGroup;
children = (
DDE86E502975FBEF0084FC2F /* [email protected] */,
DDE86E542975FBEF0084FC2F /* [email protected] */,
DDE86E552975FBEF0084FC2F /* [email protected] */,
DD63B763267A0C68001CBDFB /* [email protected] */,
DD63B75C267A0C67001CBDFB /* [email protected] */,
DD63B762267A0C67001CBDFB /* [email protected] */,
Expand Down Expand Up @@ -3711,6 +3723,7 @@
E58FCE251E94CFD600632085 /* [email protected] in Resources */,
E58FCE6D1E94CFD600632085 /* [email protected] in Resources */,
0CAD5C9E207CC1AF00E8956B /* SNPPostPaymentIndomaretHeader.xib in Resources */,
DDE86E5B2975FBEF0084FC2F /* [email protected] in Resources */,
E5EBC2C11EB0726700A568D1 /* [email protected] in Resources */,
0C6FD11B1F9DDAAB00401628 /* [email protected] in Resources */,
DD64CE6A253EA6560069F4B4 /* [email protected] in Resources */,
Expand Down Expand Up @@ -3781,6 +3794,7 @@
E571248F1E9381320064F515 /* MidtransPaymentStatusViewController.xib in Resources */,
E57124901E9381320064F515 /* MidtransPromoView.xib in Resources */,
E58FCDD91E94CFD500632085 /* [email protected] in Resources */,
DDE86E572975FBEF0084FC2F /* [email protected] in Resources */,
DDB878172628A7160054B86F /* id_uob_ezpay_app.plist in Resources */,
DDB87838262FE92A0054B86F /* en_uobList.plist in Resources */,
E58FCE611E94CFD600632085 /* [email protected] in Resources */,
Expand Down Expand Up @@ -3901,6 +3915,7 @@
ECB0218D221A9C4D0037C0E1 /* id_alfamart.plist in Resources */,
0CCD62582005D0BA006936E5 /* [email protected] in Resources */,
E58FCE591E94CFD600632085 /* [email protected] in Resources */,
DDE86E592975FBEF0084FC2F /* [email protected] in Resources */,
3D40893F1F75130300B9A2EC /* alto_preview.png in Resources */,
3D4089151F74E35800B9A2EC /* id_bni_va.plist in Resources */,
E57124A11E9381320064F515 /* VTCardListController.xib in Resources */,
Expand Down Expand Up @@ -4377,6 +4392,7 @@
E58FCE921E94CFD600632085 /* [email protected] in Resources */,
E58FCE4C1E94CFD600632085 /* [email protected] in Resources */,
0CCD623B2005D0BA006936E5 /* [email protected] in Resources */,
DDE86E562975FBEF0084FC2F /* [email protected] in Resources */,
E58FCDEC1E94CFD500632085 /* [email protected] in Resources */,
E58FCE721E94CFD600632085 /* [email protected] in Resources */,
E58FCE941E94CFD600632085 /* [email protected] in Resources */,
Expand All @@ -4397,6 +4413,7 @@
0CB8B7DD2071FA200067A0B8 /* id_bni_point_tsc.plist in Resources */,
E58FCE0C1E94CFD500632085 /* [email protected] in Resources */,
E58FCDB41E94CFD500632085 /* [email protected] in Resources */,
DDE86E582975FBEF0084FC2F /* [email protected] in Resources */,
E58FCDB21E94CFD500632085 /* bni.png in Resources */,
DD58D5B3265BF1F8007A2B92 /* MIDUobViewController.xib in Resources */,
0CE1D2A41F67B861003A012F /* [email protected] in Resources */,
Expand Down Expand Up @@ -4583,6 +4600,7 @@
E55976431EA72F770044342A /* [email protected] in Resources */,
E5F1BB7F1E93701100ED659D /* VTPaymentStatusController.xib in Resources */,
E58FCE561E94CFD600632085 /* [email protected] in Resources */,
DDE86E5A2975FBEF0084FC2F /* [email protected] in Resources */,
0CCD62572005D0BA006936E5 /* [email protected] in Resources */,
3D40891F1F74E43200B9A2EC /* en_permata_va.plist in Resources */,
);
Expand Down Expand Up @@ -5131,7 +5149,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 1.23.0;
MARKETING_VERSION = 1.24.0;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.midtrans.MidtransKit;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -5162,7 +5180,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 1.23.0;
MARKETING_VERSION = 1.24.0;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.midtrans.MidtransKit;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Loading

0 comments on commit 5b7f7e8

Please sign in to comment.