CodePush for React Native
Use Luciq with CodePush in your React Native app to monitor OTA updates. Track crashes and performance issues across CodePush update channels.
Initialization
Luciq.init({
token: '<User-App-token>',
codePushVersion: '<Code-push-version>',
invocationEvents: [<Invocation-events>],
// ... Other optional arguments here
});Native Initialization
//This should be called before startingWithToken.
Luciq.setCodePushVersion("")//This should be called before startingWithToken.
[Luciq setCodePushVersion:@""];new Luciq.Builder(application,"LUCIQ_TOKEN")
.setCodePushVersion("")
.build()Luciq.Builder(application, "LUCIQ_TOKEN")
.setCodePushVersion("")
.build()Last updated