// // ZGApkFixUtils.h // UUTUtils // // Created by zhuge on 2017/12/29. // Copyright © 2017年 zhuge. All rights reserved. // #import #import "ZGApk.h" #import "ZGApkFixConfigs.h" @interface ZGApkFixUtils : NSObject @property (strong) ZGApk *apk; @property (strong) ZGApkFixConfigs *configs; @property (strong) NSMutableDictionary *mdChangeString; // 需要替换的字符串,在混淆的最后一步,遍历所有的文件进行替换 - (id) initWithApk:(ZGApk*) apk configs:(ZGApkFixConfigs*)configs; - (void) fix; // 开始混淆 @end