Over-The-Air (OTA) Updates
This page explains how to configure the Luciq SDK to track over-the-air (OTA) updates for your React Native application, including support for EAS Update and the legacy CodePush service.
Overview
Configuring Your OTA Version
EAS Update
Setup
import Luciq, { OverAirUpdateServices } from '@luciq/react-native';
// First, initialize the SDK
Luciq.init({
token: '<YOUR_APP_TOKEN>',
invocationEvents: [InvocationEvent.shake],
});
// Then, set your OTA version
Luciq.setOverAirVersion({
service: OverAirUpdateServices.expo,
version: '<Your-Build-ID>'
});Uploading Sourcemaps
CodePush (Legacy)
Last updated