CodePush for React Native
Enables adding your CodePush version to all Luciq reports (bug reports, crash reports, etc.).
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