Skip to content

Integrating Publisher SDK

With introduction of the publisher SDK for Zabaan, we are empowering product managers to manage content for Zabaan and reduce their dependency on developers. We do this by enabling a product manager to capture metadata backed screenshots directly from the app. By doing this, developers will not need to update android view information on the CMS but can allow a product manager to navigate that process end to end.

Integrating Publisher takes just two lines of code.

Gradle Dependency

Release

implementation 'in.navanatech:zabaan-publisher-sdk:<latest version>'

Sandbox

implementation 'in.navanatech:zabaan-publisher-sdk:<latest version>-sandbox'
Maven Central

Integrating

Integrating the publisher SDK involves adding one line of initialisation code. This code must be placed in the onCreate() of the Application class in your android app.

try {
    ZabaanPublisher.init(this);
} catch (Exception e) {
    e.printStackTrace();
}
try {
    ZabaanPublisher.init(this)
} catch (e: Exception) {
    e.printStackTrace()
}
Back to top