// // AdIdNameUtils.h // UUTUtils2.1 // // Created by zhuge on 2018/7/11. // Copyright © 2018年 dym. All rights reserved. // #import @class ProjectInfo; @interface AdIdNameUtils : NSObject @property (strong) ProjectInfo *projectInfo; @property (strong) NSMutableDictionary *mdConfigs; + (AdIdNameUtils*) shared; - (void)initWithProjectPath:(ProjectInfo*)project; - (void) setAdIdIndex:(NSString*)idIndex withName:(NSString*)name; - (NSString*)adNameForAdIdIndex:(NSString*)idIndex; - (void) save; @end