1234567891011121314151617181920212223242526 |
- //
- // ZGApk.h
- // UUTUtils
- //
- // Created by zhuge on 2017/12/28.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #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
|