/PlaceHolderTTSEngine/src/com/example/placeholdertts/PlaceholderEngine.java

http://eyes-free.googlecode.com/ · Java · 17 lines · 10 code · 4 blank · 3 comment · 0 complexity · a96d332e553ec5e65019d26dd64607e4 MD5 · raw file

  1. package com.example.placeholdertts;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. public class PlaceholderEngine extends Activity {
  5. @Override
  6. public void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. // The Java portion of this does nothing.
  9. // This activity is only here so that everything
  10. // can be wrapped up inside an apk file.
  11. finish();
  12. }
  13. }