1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-01-19 13:35:41 +08:00
TrollStore/PersistenceHelper/main.m

11 lines
357 B
Mathematica
Raw Normal View History

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