This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Description
Hi, I try save string data on keychain, however, the function set return False.
Any idea ?
I post the code:
public static var tokenSession: String {
set {
KeychainWrapper.standard.set(
newValue,
forKey: "sm_token_session_key",
withAccessibility: .always,
isSynchronizable: true
)
}
get {
KeychainWrapper.standard.string(
forKey: "sm_token_session_key",
withAccessibility: .always,
isSynchronizable: true
) ?? .empty
}
}