Custom Implementation
The Capture SDK is unaware of any networking implementations and requires you to set them in the builder of GiniCapture
. The networking logic is abstracted behind the GiniCaptureNetworkService
interface which is used to upload, analyze, and delete documents. You can view the reference documentation for details.
You can provide your own networking by implementing the GiniCaptureNetworkService
interface and passing your instances to the builder of GiniCapture
. Also, you can use the Gini Bank API Library for Android or implement the communication with the Gini Bank API yourself.
You can see how you can configure the GiniCapture
to use your implementation of GiniCaptureNetworkService
in the code snippet below:
val giniCaptureNetworkService = // your implementation of the GiniCaptureNetworkService interface
GiniCapture.Builder().setGiniCaptureNetworkService(giniCaptureNetworkService).build()
Â