FAQ
Which platforms are supported?โ
The React Native SDK supports Android and iOS.
Can I use Expo?โ
Yes. Use the Expo example from the SDK repository and run expo prebuild when native configuration changes.
Does Screeb support React Native Web?โ
The React Native SDK targets Android and iOS. For web applications, use @screeb/sdk-browser.
Can I mark views for session replay privacy?โ
Yes. Use the privacy helper components:
import { ScreebId, ScreebMaskText, ScreebNoCapture } from "@screeb/react-native";
<ScreebMaskText>
<TextInput />
</ScreebMaskText>
<ScreebNoCapture>
<SensitiveView />
</ScreebNoCapture>
<ScreebId id="checkout_button">
<Button title="Checkout" />
</ScreebId>
See Privacy helpers.