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

🚧

Deprecated

Android - v3.X.X

iOS - v3.X.X

React Native - v3.X.X

Set the environment of SDK for collected events.

ParametersType
EnvironmentString = "TEST" or "LIVE"
Returns
Void
NeuroID.getInstance()?.setEnvironment("LIVE")

setEnvironmentProduction

🚧

Deprecated

Android - v3.X.X

iOS - v3.X.X

React Native - v3.X.X

Set the environment of events collected to production/development.

ParametersType
ProductionEnvironmentBoolean
Returns
Void
NeuroID.setEnvironmentProduction(true)
NeuroID.getInstance()?.setEnvironmentProduction(true)
await NeuroID.setEnvironmentProduction(true)

setSiteId

🚧

Deprecated

Android - v3.X.X

iOS - v3.X.X

React Native - v3.X.X

Set the siteID for the SDK.

ParametersType
SiteIDString
Returns
Void
NeuroID.setSiteId("mySiteID")
NeuroID.getInstance()?.setSiteId("mySiteID")
await NeuroID.setSiteId("mySiteID")

formSubmit

🚧

Deprecated 3.0.0+

Indicate the form has been submitted.

Returns
Void
NeuroID.formSubmit()
NeuroID.getInstance()?.formSubmit()
await NeuroID.formSubmit()

formSubmitSuccess

🚧

Deprecated 3.0.0+

Indicate the form has been submitted successfully.

Returns
Void
NeuroID.formSubmitSuccess()
NeuroID.getInstance()?.formSubmitSuccess()
await NeuroID.formSubmitSuccess()

formSubmitFailure

🚧

Deprecated 3.0.0+

Indicate the form has been submitted unsuccessfully.

Returns
Void
NeuroID.formSubmitFailure()
NeuroID.getInstance()?.formSubmitFailure()
await NeuroID.formSubmitFailure()

setVerifyIntegrationHealth

🚧

Deprecated

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

🚧

Deprecated

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

setVerifyIntegrationHealth

Create the Integration Health Report and print out access instructions. Should be called after configure.

Note: Please see the instructions for report installation for each platform - iOS , Android , React Native

ParametersType
VerifyIntegrationBoolean
Returns
Void
NeuroID.setVerifyIntegrationHealth(true)
NeuroID.getInstance()?.setVerifyIntegrationHealth(true)
await NeuroID.setVerifyIntegrationHealth(true)

setNeuroIDInstance

SDK Version 3.4.0: Android

Save NeuroID Class Instance for further use. Used in conjunction with the configure method.

ParametersType
NeuroIDNeuroIDClassInstance
Returns
Void
NeuroID.setNeuroIDInstance(neuroID)

printIntegrationHealthInstruction

Reprint the Integration Health Report access instructions.

Returns
Void and logs instructions to console.
NeuroID.printIntegrationHealthInstruction()
NeuroID.getInstance()?.printIntegrationHealthInstruction()