sendLogs

public static void sendLogs(Context context, PingOne.PingOneSendLogsCallback callback)

Send logs to PingOne server.

Sample usage:

PingOne.sendLogs(context, new PingOneSendLogsCallback() {
    @Override
    public void onComplete(@Nullable String supportId, @Nullable PingOneSDKError error) {
        // String with unique support ID will be returned in case the logs were sent successfully.
        if(supportId != null){
            //pass the supportId value to the PingOne support team
        }
    }
});

Parameters

context

The context of calling application.

callback

PingOneSendLogsCallback is triggered upon completion of the flow.