From 4dfb3478e73550b56049ae56242f7e80c501a4d0 Mon Sep 17 00:00:00 2001 From: InKwon James Kim Date: Tue, 10 Dec 2019 09:27:32 +0900 Subject: [PATCH] 2.8.0(5) release --- GME Remit.xcodeproj/project.pbxproj | 4 ++-- .../BiometricAuthenticationViewController.swift | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/GME Remit.xcodeproj/project.pbxproj b/GME Remit.xcodeproj/project.pbxproj index 0f6f7e94..88fb842b 100644 --- a/GME Remit.xcodeproj/project.pbxproj +++ b/GME Remit.xcodeproj/project.pbxproj @@ -16548,7 +16548,7 @@ CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 4; + CURRENT_PROJECT_VERSION = 5; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = 5QB497ZAGT; ENABLE_BITCODE = NO; @@ -16583,7 +16583,7 @@ CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 4; + CURRENT_PROJECT_VERSION = 5; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = 5QB497ZAGT; ENABLE_BITCODE = NO; diff --git a/GME Remit/Modules/BiometricAuthModules/BiometricAuthentication/User Interface/View/BiometricAuthenticationViewController.swift b/GME Remit/Modules/BiometricAuthModules/BiometricAuthentication/User Interface/View/BiometricAuthenticationViewController.swift index 5e5b86a9..4d4b76b4 100644 --- a/GME Remit/Modules/BiometricAuthModules/BiometricAuthentication/User Interface/View/BiometricAuthenticationViewController.swift +++ b/GME Remit/Modules/BiometricAuthModules/BiometricAuthentication/User Interface/View/BiometricAuthenticationViewController.swift @@ -138,12 +138,12 @@ final class BiometricAuthenticationViewController: UIViewController, BiometricAu } private func showAuthentication() { -// #if DEBUG -// DispatchQueue.main.async { -// self.delegate?.didComplete(self) -// } -// -// #else + #if DEBUG + DispatchQueue.main.async { + self.delegate?.didComplete(self) + } + + #else guard let isUseBiometricAuth = KeyChain.shared.get(key: .biometricAuth), isUseBiometricAuth == "1" else { @@ -157,6 +157,6 @@ final class BiometricAuthenticationViewController: UIViewController, BiometricAu return } self.presenter?.showBiometricAuthentication() -// #endif + #endif } }