Integrate Luciq with Expo
This page covers the recommended way to install and configure the Luciq SDK in your Expo application using the Expo Plugin system.
Overview
Recommended Setup: Using the Expo Plugin
1
npm install @luciq/react-nativeyarn add @luciq/react-native2
{
"expo": {
"plugins": [
[
"@luciq/react-native",
{
"addScreenRecordingBugReportingPermission": true //check note below
}
]
]
}
}3
npx expo prebuild4
import Luciq, { InvocationEvent } from '@luciq/react-native';
Luciq.init({
token: 'APP_TOKEN',
invocationEvents: [InvocationEvent.shake],
});Automatic Sourcemap Uploads
OTA updates (expo-updates)
expo-updates)Supported
Enriching with channel, runtime version, and emergency-launch state
Expo execution environment context (expo-constants)
expo-constants)Expo Router (expo-router)
expo-router)Supported
Tracking router.prefetch()
router.prefetch()Image and asset loading (expo-image, expo-asset)
expo-image, expo-asset)EAS Build pipeline visibility
Legacy: Using a Custom Development Client
1
2
3
Last updated