2022-09-02 23:19:48 +08:00
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "TSPHAppDelegate.h"
|
2022-09-30 03:00:11 +08:00
|
|
|
#import "../Store/TSUtil.h"
|
2022-09-02 23:19:48 +08:00
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
@autoreleasepool {
|
|
|
|
NSBundle* mcmBundle = [NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/MobileContainerManager.framework"];
|
|
|
|
[mcmBundle load];
|
2022-09-30 03:00:11 +08:00
|
|
|
chineseWifiFixup();
|
2022-09-02 23:19:48 +08:00
|
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass(TSPHAppDelegate.class));
|
|
|
|
}
|
|
|
|
}
|