Open Saqib92 opened 2 years ago
check this: #31
didn't work. still facing same issue.
If you are still facing the issue - the plugin stores with custom KeychainWrapper instance, hence KeychainWrapper.standard descibed in the link will not work. This does:
if !UserDefaults.standard.bool(forKey: "firstTimeLaunchOccurred") {
// capacitor secure storage plugin stores with custom keychain instance
let keychainWrapper = KeychainWrapper.init(serviceName: "cap_sec")
keychainWrapper.removeAllKeys()
UserDefaults.standard.set(true, forKey: "firstTimeLaunchOccurred")
}
When will an update appear? its unusable at the moment for me.
Thank you!
When user uninstall the app and then reinstall the storage is still available. It should get clear on uninstall. Is there a way to clear storage on app uninstall. Facing this behaviour on both Android and IOS.