legacyAndroidNotifyAppReady method

  1. @Deprecated('Use notifyAppReady() — cross-platform, manages both libapp.so + KBC paths.')
Future<void> legacyAndroidNotifyAppReady()

Legacy Android-only "app ready" hook for the libapp.so path. Most hosts should use notifyAppReady (cross-platform) instead.

Implementation

@Deprecated('Use notifyAppReady() — cross-platform, manages both libapp.so + KBC paths.')
Future<void> legacyAndroidNotifyAppReady() {
  _assertReady();
  return SankofaDeployPlatform.instance.notifyAppReady();
}