Skip to content

Instantly share code, notes, and snippets.

@level3tjg
level3tjg / Tweak.x
Last active November 30, 2023 22:17
Disable app thinning
// Inject into appstored and itunesstored
#import <MobileGestalt/MobileGestalt.h>
NSString *deviceClass;
%hook XDCDevice
- (NSString *)productType {
return deviceClass;
}