mirror of
https://github.com/NohamR/Tweaks.git
synced 2026-05-24 19:59:59 +00:00
32 lines
535 B
Plaintext
32 lines
535 B
Plaintext
#import <substrate.h>
|
|
#import <mach-o/dyld.h>
|
|
#import <string.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
%hook TextasticStore
|
|
- (bool)textasticProActive {
|
|
return TRUE;
|
|
}
|
|
- (bool)isVPPReceipt {
|
|
return FALSE;
|
|
}
|
|
- (bool)isLegacyPurchase {
|
|
return TRUE;
|
|
}
|
|
- (bool)isLegacyPurchaseOrProActive {
|
|
return TRUE;
|
|
}
|
|
- (bool)isLegacyPurchaseOrProActiveOrTestFlight {
|
|
return TRUE;
|
|
}
|
|
%end
|
|
|
|
// iOS 16 Crash Fix
|
|
%hook CKContainer
|
|
+ (id)defaultContainer {
|
|
return nil;
|
|
}
|
|
+ (id)containerWithIdentifier:(id) arg1 {
|
|
return nil;
|
|
}
|
|
%end |