Hi, I've been using this library and it's working fantastically. Just wanted to clarify the following issue.
My code is as follows.
speakerbox.setQueueMode(1);
for (Integer orderId : voiceoverIds) {
speakerbox.play("Order ID " + orderId + " is Ready.");
}
I want to add pauses between each of the queued phrase. I tried with adding a Runnable to playAndOnDone to no avail.
Any help on this? Thanks.