Skip to content

Zabaan Sandbox Environment

NOTE : Zabaan Sandbox environment is created to quickly integrate and test out Zabaan features. All the internal url and data configurations changes once Sandbox mode is toggled. Shipping the production app with Sandbox mode on is strictly discouraged.

Zabaan Sandbox mode is provided to ease developer lives while integrating array of Zabaan SDK features. It doesn't require publishing content change over Zabaan CMS, thus enabling faster delivery of changed data to the implementing app.

Application can use the Sandbox mode simply by toggling the flag. Make sure to toggle Sandbox mode on before you initialize Zabaan.

@Override
public void onCreate(){
    super.onCreate();
    //Make sure to call this before you initialize Zabaan.
    Zabaan.setSandbox(true)

    //Zabaan initialization and other code...
}
override fun onCreate() {
    super.onCreate()

    //Make sure to call this before you initialize Zabaan.
    Zabaan.setSandbox(true)

    //Zabaan initialization and other code...
}
Back to top