Skip to main content

Initialize ProConf SDK

Setup ProCONFClient

Check the code below to setup proConfClient

  • Example


    proConfClient.init(
    applicationContext,
    serverUrl,
    bearerToken,
    new IStatusListener() {
    @Override
    public void onSuccess() {
    // Handle success case
    }

    @Override
    public void onFailure(Object response) {
    if (response instanceof BaseResponse) {
    // Handle failure case when response is an instance of BaseResponse
    }
    }
    });

  • Parameters

    • applicationContext - ApplicationContext of an Android application
    • server_url - Server url of backend where ProCONF server is installed
    • bearerToken - Bearer token required to authenticate proconf server API
    • IStatusListener - (Optional) Interface which helps handle success and failure cases

Now you are ready to use createMeeting or joinMeeting.