DeviceSecurityCheck

@objc
public enum DeviceSecurityCheck : Int, CaseIterable

Enumeration of security checks which can be performed on the device.

Use setDeviceSecurityRules(_:) to control which of the following security features will be evaluated.

  • Indicate if a lock screen has been enabled by the user

    Declaration

    Swift

    case deviceLockScreen
  • Detect if the device has been jailbroken or rooted

    Declaration

    Swift

    case jailbreakDetection
  • Detect if the application is in debug mode

    Declaration

    Swift

    case debugDetection
  • Detect if an inline hook has been injected in a process

    Declaration

    Swift

    case hookDetection
  • Detect if app is running on emulator

    Declaration

    Swift

    case emulatorDetection