This plugin is used to hold keys or password, and even after uninstalling and reinstalling your app, they still exist
- ios: impl of Keychain services and your need xcode add Signing & Capabilities - Keychain Sharing
- android: impl of AccountManager (Upcoming Publish)
import { getItem } from 'tauri-plugin-keychain'
getItem(key)
- or
import { invoke } from '@tauri-apps/api/core'
invoke('plugin:keychain|get_item', {
key
})
import { saveItem } from 'tauri-plugin-keychain'
saveItem(key, password)
- or
import { invoke } from '@tauri-apps/api/core'
invoke('plugin:keychain|save_item', {
key,
password
})
import { removeItem } from 'tauri-plugin-keychain'
removeItem(key)
- or
import { invoke } from '@tauri-apps/api/core'
invoke('plugin:keychain|remove_item', {
key
})