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