legacyAndroidCheckForUpdate method

  1. @Deprecated('Use checkForUpdate() — cross-platform, no args needed.')
Future<UpdateStatus> legacyAndroidCheckForUpdate()

Legacy Android-only libapp.so binary-diff check. Calls into the native plugin and stages a binary-diff patch on next boot. Most hosts should use the cross-platform checkForUpdate (no args, works on iOS + Android) instead — kept exposed only because the auto-startup hook still calls it on Android. Will become fully internal once the libapp.so path is sunset in favour of β.3 KBC.

Implementation

@Deprecated('Use checkForUpdate() — cross-platform, no args needed.')
Future<UpdateStatus> legacyAndroidCheckForUpdate() {
  _assertReady();
  return SankofaDeployPlatform.instance.checkForUpdate();
}