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