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