{code:java} /** - Check if the device running the application is jailbroken. - Returns: A detector object. */ fileprivate func detectJailbreak() -> Detector Bool { if (DTTJailbreakDetection.isJailbroken()) { return true } else { return false }
{code} |
|