xref: /MusicFree/src/core/appMeta.ts (revision cfaa8d61e6f850bcdf415d99e4e52e8c7f4ba4e2)
1import getOrCreateMMKV from '@/utils/getOrCreateMMKV';
2
3export function getAppMeta(key: string) {
4    const metaMMKV = getOrCreateMMKV('App.meta');
5
6    return metaMMKV.getString(key);
7}
8
9export function setAppMeta(key: string, value: any) {
10    const metaMMKV = getOrCreateMMKV('App.meta');
11
12    return metaMMKV.set(key, value);
13}
14