// Establish whether the Android TextToSpeech class is available to us
 static {
   try {
     TextToSpeechWrapper.checkAvailable();
     androidTextToSpeechAvailable = true;
   } catch (Throwable t) {
     androidTextToSpeechAvailable = false;
   }
 }