DTTJailbreakDetection
DTTJailbreakDetection copied to clipboard
Jailbreak Detected on M1 Macs
With the new M1 architecture, users are able to run both iOS Apps on the Mac. However, DTTJailbreakDetection is blocking due to jailbreak detection
Do you mind submitting a fix?
Do you mind submitting a fix?
I could try. Maybe next week.
Add this
if (@available(iOS 14.0, *)) {
if ([NSProcessInfo processInfo].isiOSAppOnMac)
{
return NO;
}
}
right after
#if !(TARGET_IPHONE_SIMULATOR)
in DTTJailbreakDetection.m
That will at least bypass the jailbreak check on M1 devices by always returning NO
any updates on this?
any update? coming from flutter as well 😬
have same issue, hope fix soon 😌