# Supported Platforms

The React Video SDK supports modern browsers released after April 2024:

- Chrome 124+
- Firefox 124+
- Edge 124+
- Safari and Mobile Safari 17.4+

<admonition type="note">
The SDK works on other browsers, but these are officially supported and tested.
</admonition>

## WebView

The SDK runs in WebView on Android and iOS, though browser is recommended for best experience.

## Compatibility Check

Check if the current browser is officially supported:

```tsx
import { Browsers } from "@stream-io/video-react-sdk";

const isSupported = await Browsers.isSupportedBrowser();
if (!isSupported) {
  // Show message to switch browsers
}
```


---

This page was last updated at 2026-03-13T13:18:37.753Z.

For the most recent version of this documentation, visit [https://getstream.io/video/docs/react/basics/supported-platforms/](https://getstream.io/video/docs/react/basics/supported-platforms/).