Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Your app should clean up the SDK and provide feedback for the extractions that Gini Bank API delivered. Follow the recommendations below:

...

You don’t need to implement any extra steps.

Code Block
languagejavakotlin
void stopGiniCaptureSDK() {
    // After the user has seen and potentially corrected the extractions
    // cleanup the SDK while passing in the final extraction values
    // which will be used as feedback to improve the future extraction accuracy:
    GiniCapture.cleanup((Context) this,
            paymentRecipient,
            paymentReference,
            paymentPurpose,
            iban,
            bic,
            amount
        )
}

...