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 */
16package com.svox.pico;
17
18import android.content.BroadcastReceiver;
19import android.content.Context;
20import android.content.Intent;
21import android.util.Log;
22
23/*
24 * Is notified when the language pack installer is added to the system, and runs the installer.
25 */
26public class LangPackUninstaller extends BroadcastReceiver {
27
28    private final static String TAG = "LangPackUninstaller";
29
30    private final static String INSTALLER_PACKAGE = "com.svox.langpack.installer";
31
32    @Override
33    public void onReceive(Context context, Intent intent) {
34        Log.v(TAG, "about to delete " + INSTALLER_PACKAGE);
35        context.getPackageManager().deletePackage(INSTALLER_PACKAGE, null, 0);
36    }
37
38    /**
39     * Returns the name of the package that was added from the intent.
40     * @param intent the {@link Intent}
41     */
42    private static String getPackageName(Intent intent) {
43        return intent.getData().getSchemeSpecificPart();
44    }
45}
46