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