On iOS, we’ve observed that isJailBroken returns true when Parental Controls are enabled on the device. However, our intended behavior is for isJailBroken to return true only when the device is actually jailbroken, not when Parental Controls are active.
final isJailBroken = await JailbreakRootDetection.instance.isJailBroken;
Is there a recommended approach to differentiate between a jailbroken device and one that simply has Parental Controls enabled? Any guidance on refining the jailbreak detection logic would be appreciated.