isPlatformSupported static method

bool isPlatformSupported()

Check if the current platform is supported by CloudX SDK

Returns true if platform is production-ready, false otherwise

Currently:

  • Android: Production-ready ✅
  • iOS: Not supported ❌

Implementation

static bool isPlatformSupported() {
  return !Platform.isIOS;
}