Skip to content

Commit da74938

Browse files
committed
Bug Fixes
1 parent 8982bff commit da74938

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

Example/FlutterwaveSDK.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@
532532
INFOPLIST_FILE = FlutterwaveSDK/Info.plist;
533533
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
534534
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
535-
MARKETING_VERSION = 1.3.4;
535+
MARKETING_VERSION = 1.3.5;
536536
MODULE_NAME = ExampleApp;
537537
PRODUCT_BUNDLE_IDENTIFIER = com.demo.paypal.flutterwave;
538538
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -555,7 +555,7 @@
555555
INFOPLIST_FILE = FlutterwaveSDK/Info.plist;
556556
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
557557
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
558-
MARKETING_VERSION = 1.3.4;
558+
MARKETING_VERSION = 1.3.5;
559559
MODULE_NAME = ExampleApp;
560560
PRODUCT_BUNDLE_IDENTIFIER = com.demo.paypal.flutterwave;
561561
PRODUCT_NAME = "$(TARGET_NAME)";

Example/FlutterwaveSDK/ViewController.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ class ViewController: UIViewController, FlutterwavePayProtocol {
3434

3535

3636
@objc func showExample(){
37-
3837
let config = FlutterwaveConfig.sharedConfig()
3938
config.paymentOptionsToExclude = []
4039
config.currencyCode = "NGN" // This is the specified currency to charge in.
@@ -57,8 +56,7 @@ class ViewController: UIViewController, FlutterwavePayProtocol {
5756

5857
}
5958

60-
61-
59+
6260
override func viewDidLoad() {
6361
super.viewDidLoad()
6462
setUpConstraintsAndProperties()

FlutterwaveSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'FlutterwaveSDK'
11-
s.version = '1.3.4'
11+
s.version = '1.3.5'
1212
s.summary = 'FlutterwaveSDK'
1313

1414
# This description is used to generate tags and improve search results.

FlutterwaveSDK/Classes/Services/VersionTwoApi.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ enum VersionTwoServicesApi{
1919

2020
extension VersionTwoServicesApi:EndpointType{
2121
var stagingURL: URL {
22-
return URL(string: "https://rave-api-v2.herokuapp.com/")!
22+
return URL(string: "https://api.ravepay.co/")!
2323
}
2424

2525
var baseURL: URL {

FlutterwaveSDK/Classes/UI/NewExtraFlutterwave/FlutterWave+UIPickerView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ extension FlutterwavePayViewController : UITextFieldDelegate,CardSelect,UIPicker
355355
flutterwaveCardClient.isSaveCardCharge = "1"
356356
flutterwaveCardClient.saveCardPayment = "saved-card"
357357
flutterwaveCardClient.amount = self.amount
358-
flutterwaveCardClient.saveCardCharge()
358+
// flutterwaveCardClient.saveCardCharge()
359359
}
360360
@objc func pinContinueButtonTapped(){
361361
self.pinAction()

FlutterwaveSDK/Classes/Utils/RaveConstants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class RaveConstants: NSObject {
2525

2626
}
2727

28-
static let flutterWaveVersion = "1.3.4"
28+
static let flutterWaveVersion = "1.3.5"
2929
static let flutterColor = UIColor(hex: "#F5A623")
3030

3131
static let bankStyle = [(code:"044",color:"#143f89",image:"rave_access2"),

0 commit comments

Comments
 (0)