mirror of
https://github.com/NohamR/Tweaks.git
synced 2026-08-26 02:39:42 +00:00
12 lines
203 B
Plaintext
12 lines
203 B
Plaintext
#import <substrate.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
// iOS 16+ Crash Fix
|
|
%hook CKContainer
|
|
+ (id)defaultContainer {
|
|
return nil;
|
|
}
|
|
+ (id)containerWithIdentifier:(id) arg1 {
|
|
return nil;
|
|
}
|
|
%end |