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