xref: /MusicFree/src/core/appMeta.ts (revision 9677305be11b30a8953a6c14fd24375953a2309d)
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