I would like the Google Text-To-Speech Engine to speak a sentence like this:
Today is the 25th of July.
But with the current Version 3.3.13.1635260.arm and updated language packages the output is like this:
Today is the 25 of July.
Time time = new Time(Time.getCurrentTimezone());
time.setToNow();
today = time.monthDay;
String output = "Today is the "+ today + ". of July.";
speech.speak(output, TextToSpeech.QUEUE_FLUSH, null);
I tried it with int and String values of today, same results.