ZGApk.h 533 B

1234567891011121314151617181920212223242526
  1. //
  2. // ZGApk.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/28.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ZGApk_Manifest.h"
  10. #import "ZGApk_yml.h"
  11. #import "ZGApk_String.h"
  12. @interface ZGApk : NSObject
  13. @property (nonatomic, retain) NSString *path;
  14. @property (strong) ZGApk_Manifest *manifest;
  15. @property (strong) ZGApk_yml *yml;
  16. @property (strong) ZGApk_String *string;
  17. @property (strong) NSString *okApkPath;
  18. - (ZGApk*) initWithPath:(NSString*)path;
  19. - (void) save;
  20. @end