isTampered method

  1. @override
Future<bool> isTampered(
  1. String bundleId
)
override

Whether the application bundle has been tampered with.

Detects modifications made after the app was officially signed, for example by resigning with a different certificate. The bundleId is the app's unique package identifier (for example, com.example.myapp).

Implementation

@override
Future<bool> isTampered(String bundleId) => JailbreakRootDetection.instance.isTampered(bundleId);