disableCurrentPatch method

Future<void> disableCurrentPatch()

Disable the currently active patch, forcing the next launch to boot from the baseline libapp.so. Useful for support workflows ("turn off the bad patch for this user, we'll re-roll").

Implementation

Future<void> disableCurrentPatch() {
  _assertReady();
  return SankofaDeployPlatform.instance.disableCurrentPatch();
}