error message
The constructor TextToSpeech(SQLiteExample, SQLiteExample) is undefined
04-16 04:06:19.860: E/AndroidRuntime(1728): Caused by: java.lang.ClassCastException: com.sql.SQLiteExample
error line
myTts = new TextToSpeech(this, this);
in onCreate method
as in error you are not passing right params in
TextToSpeech.as docs says:context : The context this instance is running in.
listener: The TextToSpeech.OnInitListener that will be called when the TextToSpeech engine has initialized.