Browse Source

added screenshots and uploaded for ipad

pull/1/head
gme_2 6 years ago
parent
commit
5aeba3ddc3
  1. 4
      GME Remit.xcodeproj/project.pbxproj
  2. 2
      GMERemittance/AppDelegate.swift
  3. 1
      GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitTableViewCell.swift
  4. 7
      GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitViewController.swift
  5. 6
      GMERemittance/SideMenu/SideMenuViewController.swift

4
GME Remit.xcodeproj/project.pbxproj

@ -5588,7 +5588,7 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = 1;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
@ -5613,7 +5613,7 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = 1;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};

2
GMERemittance/AppDelegate.swift

@ -19,7 +19,7 @@ import AlamofireNetworkActivityLogger
import IQKeyboardManagerSwift
import LGSideMenuController
let server: Server = .uat
let server: Server = .live
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, MessagingDelegate {

1
GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitTableViewCell.swift

@ -24,7 +24,6 @@ class AutoDebitTableViewCell: UITableViewCell {
labelRecipientName.text = name
accountNumnerLabel.text = model?.accountNumMasked
layer.borderColor = UIColor(red:0.91, green:0.93, blue:0.95, alpha:1.0).cgColor
layer.borderWidth = 1
layer.cornerRadius = 10

7
GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitViewController.swift

@ -62,13 +62,6 @@ class AutoDebitViewController: UIViewController {
}
location = location.components(separatedBy: .whitespaces).joined(separator: "%")
print(location)
let string = "&redirect_uri=http://gmeuat.gmeremit.com:5013/Dashboard/AutoDebit&auth_type=1"
let replacedString = "&auth_type=1"
location = location.replacingOccurrences(of: string, with: replacedString)
print(location)
self.hideProgressHud()
self.openWkWebViewWith(url: location)
}) { (error) in

6
GMERemittance/SideMenu/SideMenuViewController.swift

@ -70,7 +70,8 @@ class SideMenuViewController: UIViewController {
let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser()
self.withdrawButton.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = true
self.view.backgroundColor = AppConstants.themeRedColor
self.roundedBgView.layer.cornerRadius = 20
@ -84,7 +85,8 @@ class SideMenuViewController: UIViewController {
self.labelBalance.text = balance
let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser()
self.withdrawButton.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = true
}

Loading…
Cancel
Save