diff --git a/PayUCustomBrowser.framework/Assets.car b/PayUCustomBrowser.framework/Assets.car index 51beca8..28db666 100644 Binary files a/PayUCustomBrowser.framework/Assets.car and b/PayUCustomBrowser.framework/Assets.car differ diff --git a/PayUCustomBrowser.framework/Headers/CBConnection.h b/PayUCustomBrowser.framework/Headers/CBConnection.h index 026cc8e..753623b 100644 --- a/PayUCustomBrowser.framework/Headers/CBConnection.h +++ b/PayUCustomBrowser.framework/Headers/CBConnection.h @@ -16,7 +16,7 @@ #pragma mark - UIWebView delegate /*! - * This method must be called from UIWebView delegate method from Merchant's App. + * This method must be called from UIWebView delegate method from Merchant's App */ - (void)payUwebView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request; diff --git a/PayUCustomBrowser.framework/Headers/CBConstant.h b/PayUCustomBrowser.framework/Headers/CBConstant.h index 0291772..8168c96 100755 --- a/PayUCustomBrowser.framework/Headers/CBConstant.h +++ b/PayUCustomBrowser.framework/Headers/CBConstant.h @@ -9,14 +9,6 @@ #ifndef iOSCustomeBrowser_CBConstant_h #define iOSCustomeBrowser_CBConstant_h - - -typedef NS_OPTIONS(NSUInteger, PUCBBankSimulator) { - PUCBDefault = 0, - PUCBBankSimulatorLocal = 1, - PUCBBankSimulatorRemote = 2, -}; - //Macros To prevent instantiation of class by standard methods #define ATTRIBUTE_ALLOC __attribute__((unavailable("alloc not available, call sharedSingletonInstance instead"))) #define ATTRIBUTE_INIT __attribute__((unavailable("init not available, call sharedSingletonInstance instead"))) diff --git a/PayUCustomBrowser.framework/Headers/PUCBBaseConnection.h b/PayUCustomBrowser.framework/Headers/PUCBBaseConnection.h index ef96d4a..c5b70d2 100644 --- a/PayUCustomBrowser.framework/Headers/PUCBBaseConnection.h +++ b/PayUCustomBrowser.framework/Headers/PUCBBaseConnection.h @@ -20,12 +20,10 @@ - (instancetype) init ATTRIBUTE_INIT; - (instancetype) new ATTRIBUTE_NEW; -@property (nonatomic, assign) BOOL isMagicRetry; @property (nonatomic, copy) NSString *txnID; @property (nonatomic, copy) NSString *merchantKey; @property (weak, nonatomic) id cbWebViewResponseDelegate; @property (nonatomic, assign) BOOL isAutoOTPSelect; -@property (nonatomic, assign) PUCBBankSimulator bankSimulatorType; @property (nonatomic, strong) PUCBConfiguration *cbConfig; /*! diff --git a/PayUCustomBrowser.framework/Headers/PUCBConfiguration.h b/PayUCustomBrowser.framework/Headers/PUCBConfiguration.h index 8bcc06e..5c871ad 100644 --- a/PayUCustomBrowser.framework/Headers/PUCBConfiguration.h +++ b/PayUCustomBrowser.framework/Headers/PUCBConfiguration.h @@ -18,7 +18,6 @@ /*! * This method returns singleton object. Use this to configure features provided by CB - * @return obj The singleton sintance of PUCBConfiguration class */ +(instancetype)getSingletonInstance; @@ -29,11 +28,9 @@ @property (nonatomic, strong) NSString *merchantKey; @property (nonatomic, strong) NSString *transactionId; -@property (nonatomic, assign) BOOL isMagicRetry; @property (nonatomic, assign) BOOL isAutoOTPSelect; @property (nonatomic, assign) BOOL shouldShowPayULoader; @property (nonatomic, assign) BOOL enableWKWebView; -@property (nonatomic, assign) PUCBBankSimulator bankSimulatorType; @property (nonatomic, strong) PUCBReviewOrderConfig *reviewOrderConfig; @property (nonatomic, assign) NSUInteger surePayCount; @property (nonatomic, strong) NSString *paymentURL, *paymentPostParam; diff --git a/PayUCustomBrowser.framework/Headers/PUCBWebVC.h b/PayUCustomBrowser.framework/Headers/PUCBWebVC.h index 417dafe..51a3f4b 100644 --- a/PayUCustomBrowser.framework/Headers/PUCBWebVC.h +++ b/PayUCustomBrowser.framework/Headers/PUCBWebVC.h @@ -13,7 +13,6 @@ NS_ENUM(NSInteger) { PUCBNilArgument = 100, PUCBInvalidMerchantKey = 101, - PUCBBankSimulatorNotSupported = 102 }; @@ -22,9 +21,6 @@ NS_ENUM(NSInteger) { @required /*! * This method gets called when transaction is successfull. - * @param response - * Response sent by PayU on successful completion of Payment. - * * @note Hash inside response should be compared with server calculated hash to rule out possibility of tampering of data. * This should be done at server's end. * @@ -33,15 +29,11 @@ NS_ENUM(NSInteger) { /*! * This method gets called when transaction fails. It logs txn_fail event. - * @param response - * Response sent by PayU when the transaction gets failed */ - (void)PayUFailureResponse:(id)response; /*! * This method gets called in case of network error - * @param notification - * An NSDictionary containing details about the network error */ - (void)PayUConnectionError:(NSDictionary *)notification; @@ -53,10 +45,6 @@ NS_ENUM(NSInteger) { /*! * If the merchant intentends to receive response from her own server, this method shoudld be implemented. * This method is called when merchant's Success URL passes data to the custom browser. - * @param payUResponse - * Response sent by PayU on successful completion of Payment. - * @param surlResponse - * Response sent by merchant's server on successful completion of the payment. */ - (void)PayUSuccessResponse:(id) payUResponse SURLResponse:(id) surlResponse; @@ -64,10 +52,6 @@ NS_ENUM(NSInteger) { /*! * If the merchant intentends to receive response from her own server, this method shoudld be implemented. * This method is called when merchant's Failure URL passes data to the custom browser. - * @param payUResponse - * Response sent by PayU when the transaction gets failed. - * @param furlResponse - * Response sent by merchant's server on failure of the payment. */ - (void)PayUFailureResponse:(id) payUResponse FURLResponse:(id) furlResponse; @@ -108,15 +92,6 @@ NS_ENUM(NSInteger) { /*! * This method is one of the two designated initializer of PUCBWebVC class - * @param postParam - * Post parmamters required by the payment server - * @param url - * This is the payment URL, the first URL which gets loaded in payment journey - * @param key - * This is the merchant key which she gets after onbaording PayU - * @param error - * Error is retured if the other parmaters fails validation checks - @see -initWithNSURLRequest:merchantKey:error */ - (instancetype)initWithPostParam:(NSString*)postParam @@ -126,12 +101,6 @@ NS_ENUM(NSInteger) { /*! * This method is one of the two designated initializer of PUCBWebVC class - * @param request - * This is the NSURLRequest which should ideally contain post params along with the payment URL - * @param key - * This is the merchant key which she gets after onbaording PayU - * @param error - * Error is retured if the other parmaters fails validation checks */ - (instancetype)initWithNSURLRequest:(NSURLRequest*)request merchantKey:(NSString*)key diff --git a/PayUCustomBrowser.framework/Headers/PayUCBWebViewResponseDelegate.h b/PayUCustomBrowser.framework/Headers/PayUCBWebViewResponseDelegate.h index ce46e35..8212f3a 100644 --- a/PayUCustomBrowser.framework/Headers/PayUCBWebViewResponseDelegate.h +++ b/PayUCustomBrowser.framework/Headers/PayUCBWebViewResponseDelegate.h @@ -16,21 +16,15 @@ /*! * This method gets called when transaction is successfull. - * * @note Hash inside response should be compared with server calculated hash to rule out possibility of tampering of data. * This should be done at server's end. */ - (void)PayUSuccessResponse:(id)response; - - (void)PayUFailureResponse:(id)response; -/*! - * @param notification An NSDictionary containing details about the network error - */ - (void)PayUConnectionError:(NSDictionary *)notification; - @optional - (void)PayUTxnCancelledWithBackPress; diff --git a/PayUCustomBrowser.framework/Info.plist b/PayUCustomBrowser.framework/Info.plist index f3d4523..867ffca 100644 Binary files a/PayUCustomBrowser.framework/Info.plist and b/PayUCustomBrowser.framework/Info.plist differ diff --git a/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/objects-8.0+.nib index 71dc9c2..03860d8 100644 Binary files a/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/runtime.nib index c8254d2..183b0a3 100644 Binary files a/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBAllPaymentOption~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/objects-8.0+.nib index b54d3c8..fe09a61 100644 Binary files a/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/runtime.nib index 130133c..2204a98 100644 Binary files a/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBAllPaymentOption~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/objects-8.0+.nib index 5e8a681..033bfdd 100644 Binary files a/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/runtime.nib index 069f94c..f4ad80d 100644 Binary files a/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBApproveView~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/objects-8.0+.nib index 4e0d5b6..789b3d5 100644 Binary files a/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/runtime.nib index 93e5f41..9c88e2b 100644 Binary files a/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBApproveView~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/objects-8.0+.nib index f4dd7f4..4d3c347 100644 Binary files a/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/runtime.nib index 5ea00e8..165073c 100644 Binary files a/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBBankPageLoading~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/objects-8.0+.nib index bc76e11..012f93c 100644 Binary files a/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/runtime.nib index 534cb67..a2f8ea1 100644 Binary files a/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBBankPageLoading~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/objects-8.0+.nib index 8e683be..fde3d28 100644 Binary files a/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/runtime.nib index cc223e3..92d6af8 100644 Binary files a/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBFooterView~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/objects-8.0+.nib index 237341a..e9d037a 100644 Binary files a/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/runtime.nib index 68b8bff..377f926 100644 Binary files a/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBFooterView~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/objects-8.0+.nib index d111692..2169d48 100644 Binary files a/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/runtime.nib index 1c19112..3ac7738 100644 Binary files a/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBHeaderView~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/objects-8.0+.nib index d002198..d69c58a 100644 Binary files a/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/runtime.nib index 12698c6..9df0601 100644 Binary files a/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBHeaderView~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/objects-8.0+.nib index 63a7635..584f81e 100644 Binary files a/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/runtime.nib index d004478..6773f1e 100644 Binary files a/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBLoader~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/objects-8.0+.nib index 22b4ec7..accabdf 100644 Binary files a/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/runtime.nib index 8d51b18..68a18f3 100644 Binary files a/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBLoader~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/objects-8.0+.nib index c5d568d..a6dbabb 100644 Binary files a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/runtime.nib index fc586d2..5d5f3be 100644 Binary files a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/objects-8.0+.nib index 2c70f26..27d02d9 100644 Binary files a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/runtime.nib index 61a6b41..a674bad 100644 Binary files a/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBPassowrdWithIncorrectOTPView~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/objects-8.0+.nib index 8e110a0..be8d8da 100644 Binary files a/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/runtime.nib index 2f0b28c..5a6e634 100644 Binary files a/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBPasswordNB~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/objects-8.0+.nib index 6a4ad21..1c2561d 100644 Binary files a/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/runtime.nib index ef2a191..493b059 100644 Binary files a/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBPasswordNB~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/objects-8.0+.nib index 33af5b2..e939d8a 100644 Binary files a/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/runtime.nib index b32a1ea..4daa714 100644 Binary files a/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBROCell~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/objects-8.0+.nib index 7560647..b2d8c20 100644 Binary files a/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/runtime.nib index fc5aa85..8408d22 100644 Binary files a/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBROCell~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/objects-8.0+.nib index 6a9ad97..9cb7a2e 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/runtime.nib index dc69acd..a765e9a 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/objects-8.0+.nib index a070558..e13b61a 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/runtime.nib index 29a0cf9..7eaee83 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBRegenerateOTPView~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/objects-8.0+.nib index 3b70049..94787ff 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/runtime.nib index 0e1b282..a74606c 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBRegisterOption~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/objects-8.0+.nib index cd18a1d..6fa38f3 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/runtime.nib index 64914b1..cdfdef1 100644 Binary files a/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBRegisterOption~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/objects-8.0+.nib index 6ab673a..171df80 100644 Binary files a/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/runtime.nib index 35bb6f1..c0a4965 100644 Binary files a/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBReviewOrderView~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/objects-8.0+.nib index c3b5308..fc63629 100644 Binary files a/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/runtime.nib index 9fc144d..574aca8 100644 Binary files a/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBReviewOrderView~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/objects-8.0+.nib index ca8ef3a..b145ad8 100644 Binary files a/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/runtime.nib index 2b7e11e..efc2a98 100644 Binary files a/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBSurePay~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/objects-8.0+.nib index e23eeff..679ff2c 100644 Binary files a/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/runtime.nib index bc4da2c..3a78b10 100644 Binary files a/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBSurePay~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/objects-8.0+.nib index 19ca587..2cbd6ee 100644 Binary files a/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/runtime.nib index 5ab14b2..6adf37c 100644 Binary files a/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBUserIdNB~ipad.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/objects-8.0+.nib b/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/objects-8.0+.nib index 0154a25..895b4ba 100644 Binary files a/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/objects-8.0+.nib and b/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/objects-8.0+.nib differ diff --git a/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/runtime.nib b/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/runtime.nib index e6cd398..fcf635b 100644 Binary files a/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/runtime.nib and b/PayUCustomBrowser.framework/PUCBUserIdNB~iphone.nib/runtime.nib differ diff --git a/PayUCustomBrowser.framework/PayUCBInfo.plist b/PayUCustomBrowser.framework/PayUCBInfo.plist index 881559a..3db4051 100644 Binary files a/PayUCustomBrowser.framework/PayUCBInfo.plist and b/PayUCustomBrowser.framework/PayUCBInfo.plist differ diff --git a/PayUCustomBrowser.framework/PayUCustomBrowser b/PayUCustomBrowser.framework/PayUCustomBrowser index 8a75109..48173fe 100755 Binary files a/PayUCustomBrowser.framework/PayUCustomBrowser and b/PayUCustomBrowser.framework/PayUCustomBrowser differ diff --git a/PayUIndia-Custom-Browser.podspec b/PayUIndia-Custom-Browser.podspec index 8e30f7d..b547c16 100644 --- a/PayUIndia-Custom-Browser.podspec +++ b/PayUIndia-Custom-Browser.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "PayUIndia-Custom-Browser" - s.version = "5.8.2" + s.version = "5.8.3" s.license = "MIT" s.homepage = "https://github.com/payu-intrepos/iOS-Custom-Browser" s.author = { "PayUbiz" => "contact@payu.in" } @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.description = "iOS custom browser by PayUbiz helps user in payment flow to pay in as few taps as possible. The bank pages are generally not optimised for mobiles. It simplifies the awkward looking bank page on mobiles for user and helps in completing the transaction quickly. iOS custom browser gives custom controls (native UIButtons) to user which work as shortcuts to generate/enter OTP and pin. It helps in increasing the success rate of transactions." s.source = { :git => "https://github.com/payu-intrepos/iOS-Custom-Browser.git", - :tag => "v5.8.2" } + :tag => "v5.8.3" } s.documentation_url = "https://github.com/payu-intrepos/Documentations/wiki/9.-iOS-Custom-Browser#si" s.ios.deployment_target = "8.0"