1234567891011121314151617181920212223 |
- //
- // ZGApkFixUtils.m
- // UUTUtils
- //
- // Created by zhuge on 2017/12/29.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import "ZGApkFixUtils.h"
- @implementation ZGApkFixUtils
- - (id)initWithApk:(ZGApk *)apk configs:(ZGApkFixConfigs *)configs {
- self.apk = apk;
- self.configs = configs;
- return self;
- }
- - (void)fix {
- // do nothing now
- }
- @end
|