Mobile SDK

Handl provides a Software Development Kit (SDK) for Android and iOS mobile platforms. The SDK is embedded in mobile applications that require document processing.

The SDK is responsible for capturing images, sending them to a server and receiving the results. By default, image processing takes place on Handl servers at latest.handl.ai.

SDK for Android

You can change the address of the server that the SDK refers to for image processing and results. To do this, replace the address "https://latest.handl.io/" in the following piece of code:

Handl_SDK_Android_2020_11_11
        val api = Retrofit.Builder()
            .baseUrl("https://latest.dbrain.io/")
            .build()
            .create(Api::class.java)

SDK для iOS

You can change the server address that the SDK uses to process the image and retrieve the results. To do this, specify a new address in the classificationUrl and recognitionUrl parameters of the flowconstant during initialization

Dbrain_SDK_iOS_2020_10_09

Last updated

Was this helpful?