Browse Source

2.8.0(5) release

pull/1/head
InKwon James Kim 5 years ago
parent
commit
4dfb3478e7
  1. 4
      GME Remit.xcodeproj/project.pbxproj
  2. 14
      GME Remit/Modules/BiometricAuthModules/BiometricAuthentication/User Interface/View/BiometricAuthenticationViewController.swift

4
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;

14
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
}
}
Loading…
Cancel
Save