...
You can see how you can configure the GiniCapture
to use an your implementation of GiniCaptureNetworkService
in the code snippet below. We are providing GiniCaptureDefaultNetworkService
in this example, but you can provide your own implementation as well.:
Code Block | ||
---|---|---|
| ||
val giniCaptureNetworkService = // your implementation of the GiniCaptureNetworkService interface GiniCapture.Builder().setGiniCaptureNetworkService(giniCaptureNetworkService).build() |
...