Browse Source

2.8.1

pull/1/head
InKwon James Kim 5 years ago
parent
commit
6deb15a992
  1. 8
      GME Remit.xcodeproj/project.pbxproj
  2. 6
      GME Remit/Modules/Home/User Interface/Wireframe/HomeWireframe.swift
  3. 7
      GME Remit/Modules/RegisterModules/Register/User Interface/Wireframe/RegisterWireframe.swift

8
GME Remit.xcodeproj/project.pbxproj

@ -16568,7 +16568,7 @@
CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 5QB497ZAGT;
ENABLE_BITCODE = NO;
@ -16583,7 +16583,7 @@
"$(inherited)",
"$(PROJECT_DIR)/GME\\ Remit/ThirdParty/virtualKeyboard/mtk_module",
);
MARKETING_VERSION = 2.8.0;
MARKETING_VERSION = 2.8.1;
PRODUCT_BUNDLE_IDENTIFIER = com.gme.gmeremit;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
@ -16603,7 +16603,7 @@
CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 5QB497ZAGT;
ENABLE_BITCODE = NO;
@ -16619,7 +16619,7 @@
"$(inherited)",
"$(PROJECT_DIR)/GME\\ Remit/ThirdParty/virtualKeyboard/mtk_module",
);
MARKETING_VERSION = 2.8.0;
MARKETING_VERSION = 2.8.1;
PRODUCT_BUNDLE_IDENTIFIER = com.gme.gmeremit;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";

6
GME Remit/Modules/Home/User Interface/Wireframe/HomeWireframe.swift

@ -74,7 +74,11 @@ extension HomeWireframe: HomeWireframeInput {
}
func openKyc() {
NewRegisterWireframe().open(on: view, step: .first)
KycWireframe().openViewControllerWithNavigation(
viewController: KycWireframe().getMainView(),
source: view
)
// NewRegisterWireframe().open(on: view, step: .first)
}
func showPennyTestSubmit() {

7
GME Remit/Modules/RegisterModules/Register/User Interface/Wireframe/RegisterWireframe.swift

@ -50,8 +50,9 @@ extension RegisterWireframe: RegisterWireframeInput {
}
func showKyc() {
if let navigation = self.view.navigationController {
NewRegisterWireframe().pushMainView(in: navigation)
}
view.navigationController?.pushViewController(KycWireframe().getMainView(), animated: true)
// if let navigation = self.view.navigationController {
// NewRegisterWireframe().pushMainView(in: navigation)
// }
}
}
Loading…
Cancel
Save