From 387671fc79b1257229b2ee6fc90622f3a3363d40 Mon Sep 17 00:00:00 2001 From: InKwon James Kim Date: Fri, 31 May 2019 15:14:14 +0900 Subject: [PATCH] change license name --- .../Login/User Interface/View/LoginViewController.swift | 2 +- .../Register/User Interface/View/RegisterViewController.swift | 2 +- .../User Interface/View/SendMoneyCodeViewController.swift | 2 +- .../Profile/ProfileChangePasswordViewController.swift | 2 +- GMERemittance/Utility/SecureKeypad.swift | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GMERemittance/Module/Login/User Interface/View/LoginViewController.swift b/GMERemittance/Module/Login/User Interface/View/LoginViewController.swift index 76f7b1cc..96829c08 100644 --- a/GMERemittance/Module/Login/User Interface/View/LoginViewController.swift +++ b/GMERemittance/Module/Login/User Interface/View/LoginViewController.swift @@ -176,7 +176,7 @@ class LoginViewController: UIViewController { mQwertyTransKeyView?.mTK_MakeSecureKey() mQwertyTransKeyView?.mTK_Supported(byDeviceOrientation: SupportedByDevicePortrait) // ccr key - mQwertyTransKeyView?.mTK_LicenseCheck("license_mtranskey.rsl") + mQwertyTransKeyView?.mTK_LicenseCheck("license_mtranskey") } private func configureLanguage() { diff --git a/GMERemittance/Module/Register/User Interface/View/RegisterViewController.swift b/GMERemittance/Module/Register/User Interface/View/RegisterViewController.swift index 81e3aac8..6e1c9959 100644 --- a/GMERemittance/Module/Register/User Interface/View/RegisterViewController.swift +++ b/GMERemittance/Module/Register/User Interface/View/RegisterViewController.swift @@ -163,7 +163,7 @@ class RegisterViewController: UIViewController { mQwertyTransKeyView?.mTK_Supported(byDeviceOrientation: SupportedByDevicePortrait) mQwertyTransKeyView?.mTK_EnableSamekeyInputDataEncrypt(false) // ccr key - mQwertyTransKeyView?.mTK_LicenseCheck("license_mtranskey.rsl") + mQwertyTransKeyView?.mTK_LicenseCheck("license_mtranskey") } private func setup() { diff --git a/GMERemittance/Module/SendMoneyCode/User Interface/View/SendMoneyCodeViewController.swift b/GMERemittance/Module/SendMoneyCode/User Interface/View/SendMoneyCodeViewController.swift index 1c308f12..e3544787 100644 --- a/GMERemittance/Module/SendMoneyCode/User Interface/View/SendMoneyCodeViewController.swift +++ b/GMERemittance/Module/SendMoneyCode/User Interface/View/SendMoneyCodeViewController.swift @@ -99,7 +99,7 @@ class SendMoneyCodeViewController: UIViewController { mNumberTransKeyView?.delegate = self mNumberTransKeyView?.mTK_MakeSecureKey() mNumberTransKeyView?.mTK_Supported(byDeviceOrientation: SupportedByDevicePortraitAndLandscape) - mNumberTransKeyView?.mTK_LicenseCheck("license_mtranskey.rsl") + mNumberTransKeyView?.mTK_LicenseCheck("license_mtranskey") } func showNumberTranskeyAction(){ diff --git a/GMERemittance/Profile/ProfileChangePasswordViewController.swift b/GMERemittance/Profile/ProfileChangePasswordViewController.swift index 63677ce8..afe23fda 100644 --- a/GMERemittance/Profile/ProfileChangePasswordViewController.swift +++ b/GMERemittance/Profile/ProfileChangePasswordViewController.swift @@ -171,7 +171,7 @@ class ProfileChangePasswordViewController: UIViewController { mQwertyTransKeyView?.mTK_MakeSecureKey() mQwertyTransKeyView?.mTK_Supported(byDeviceOrientation: SupportedByDevicePortrait) // ccr key - mQwertyTransKeyView?.mTK_LicenseCheck("license_mtranskey.rsl") + mQwertyTransKeyView?.mTK_LicenseCheck("license_mtranskey") } diff --git a/GMERemittance/Utility/SecureKeypad.swift b/GMERemittance/Utility/SecureKeypad.swift index c2095fef..17200331 100644 --- a/GMERemittance/Utility/SecureKeypad.swift +++ b/GMERemittance/Utility/SecureKeypad.swift @@ -117,7 +117,7 @@ class SecureKeypad: NSObject { asciiKeypad.mTK_Supported(byDeviceOrientation: SupportedByDevicePortraitAndLandscape) asciiKeypad.mTK_EnableSamekeyInputDataEncrypt(true) asciiKeypad.mTK_SetUseBalloonImageButton(true) - asciiKeypad.mTK_LicenseCheck("license_mtranskey.rsl") + asciiKeypad.mTK_LicenseCheck("license_mtranskey") } /// update ASCII UI @@ -140,7 +140,7 @@ class SecureKeypad: NSObject { numberPad.mTK_Init(self) numberPad.delegate = self numberPad.mTK_MakeSecureKey() - numberPad.mTK_LicenseCheck("license_mtranskey.rsl") + numberPad.mTK_LicenseCheck("license_mtranskey") numberPad.mTK_ShowMessageIfMinLength("0자리 이상 입력해주세요.") numberPad.mTK_ShowMessageIfMaxLength("16자리 입력이 초과되었습니다.") numberPad.mTK_UseVoiceOver(false)