// // ZGApk.h // UUTUtils // // Created by zhuge on 2017/12/28. // Copyright © 2017年 zhuge. All rights reserved. // #import #import "ZGApk_Manifest.h" #import "ZGApk_yml.h" #import "ZGApk_String.h" @interface ZGApk : NSObject @property (nonatomic, retain) NSString *path; @property (strong) ZGApk_Manifest *manifest; @property (strong) ZGApk_yml *yml; @property (strong) ZGApk_String *string; @property (strong) NSString *okApkPath; - (ZGApk*) initWithPath:(NSString*)path; - (void) save; @end