Deprecated Methods
Methods that are no longer supported.
SDK Methods
Below each method you will see a brief description as well as a code example for each of the supported platform/frameworks. If you do not see a command example in a specific language/platform then the command is not available or not relevant for that platform.
setEnvironment
setEnvironmentDeprecated
Android - v3.X.X
iOS - v3.X.X
React Native - v3.X.X
Set the environment of SDK for collected events.
| Parameters | Type |
|---|---|
| Environment | String = "TEST" or "LIVE" |
| Returns |
|---|
| Void |
NeuroID.getInstance()?.setEnvironment("LIVE")
setEnvironmentProduction
setEnvironmentProductionDeprecated
Android - v3.X.X
iOS - v3.X.X
React Native - v3.X.X
Set the environment of events collected to production/development.
| Parameters | Type |
|---|---|
| ProductionEnvironment | Boolean |
| Returns |
|---|
| Void |
NeuroID.setEnvironmentProduction(true)
NeuroID.getInstance()?.setEnvironmentProduction(true)
await NeuroID.setEnvironmentProduction(true)
setSiteId
setSiteIdDeprecated
Android - v3.X.X
iOS - v3.X.X
React Native - v3.X.X
Set the siteID for the SDK.
| Parameters | Type |
|---|---|
| SiteID | String |
| Returns |
|---|
| Void |
NeuroID.setSiteId("mySiteID")
NeuroID.getInstance()?.setSiteId("mySiteID")
await NeuroID.setSiteId("mySiteID")
formSubmit
formSubmitDeprecated 3.0.0+
Indicate the form has been submitted.
| Returns |
|---|
| Void |
NeuroID.formSubmit()
NeuroID.getInstance()?.formSubmit()
await NeuroID.formSubmit()
formSubmitSuccess
formSubmitSuccessDeprecated 3.0.0+
Indicate the form has been submitted successfully.
| Returns |
|---|
| Void |
NeuroID.formSubmitSuccess()
NeuroID.getInstance()?.formSubmitSuccess()
await NeuroID.formSubmitSuccess()
formSubmitFailure
formSubmitFailureDeprecated 3.0.0+
Indicate the form has been submitted unsuccessfully.
| Returns |
|---|
| Void |
NeuroID.formSubmitFailure()
NeuroID.getInstance()?.formSubmitFailure()
await NeuroID.formSubmitFailure()
setVerifyIntegrationHealth
setVerifyIntegrationHealthDeprecated
Android - v3.5.2+
iOS - v3.4.2+
React Native - v3.4.1+
Sets a flag that allows the integration health report to start collecting data. Deprecated. Method does not do anything in the noted versions above.
| Returns |
|---|
| Void |
printIntegrationHealthInstruction
printIntegrationHealthInstructionDeprecated
Android - v3.5.2+
iOS - v3.4.2+
React Native - v3.4.1+
Method that prints instructions for the integration health report. Deprecated. Method does not do anything in the noted versions above.
| Returns |
|---|
| Void |
Updated 10 months ago
