/**
- Check if the device running the application is jailbroken.
*/
fileprivate func detectDebugabble() -> Bool {
#if DEBUG
return true
#else
return false
#endif
}