/documentation/TextToSpeech_Plugin_Engine_Examples/PicoUnbundled/src/com/svox/pico/unbundled/LangPackUninstaller.java

http://eyes-free.googlecode.com/ · Java · 45 lines · 16 code · 6 blank · 23 comment · 0 complexity · 94203fe602a1806fb69e8a024b3054df MD5 · raw file

  1. /*
  2. * Copyright (C) 2009 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.svox.pico.unbundled;
  17. import android.content.BroadcastReceiver;
  18. import android.content.Context;
  19. import android.content.Intent;
  20. import android.util.Log;
  21. /*
  22. * Is notified when the language pack installer is added to the system, and runs the installer.
  23. */
  24. public class LangPackUninstaller extends BroadcastReceiver {
  25. private final static String TAG = "LangPackUninstaller";
  26. private final static String INSTALLER_PACKAGE = "com.svox.langpack.installer";
  27. @Override
  28. public void onReceive(Context context, Intent intent) {
  29. Log.v(TAG, "about to delete " + INSTALLER_PACKAGE);
  30. // context.getPackageManager().deletePackage(INSTALLER_PACKAGE, null, 0);
  31. }
  32. /**
  33. * Returns the name of the package that was added from the intent.
  34. * @param intent the {@link Intent}
  35. */
  36. private static String getPackageName(Intent intent) {
  37. return intent.getData().getSchemeSpecificPart();
  38. }
  39. }