IPackageInstallObserver2.aidl revision 3a44f3f1b446315ef894e01d2ab9b5388c2bd8c4
1/*
2 * Copyright (C) 2014 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
17package android.content.pm;
18
19import android.content.IntentSender;
20import android.os.Bundle;
21
22/**
23 * API for installation callbacks from the Package Manager.  In certain result cases
24 * additional information will be provided.
25 * @hide
26 */
27oneway interface IPackageInstallObserver2 {
28    /**
29     * The install operation has completed.  {@code returnCode} holds a numeric code
30     * indicating success or failure.  In certain cases the {@code extras} Bundle will
31     * contain additional details:
32     *
33     * <p><table>
34     * <tr>
35     *   <td>INSTALL_FAILED_DUPLICATE_PERMISSION</td>
36     *   <td>Two strings are provided in the extras bundle: EXTRA_EXISTING_PERMISSION
37     *       is the name of the permission that the app is attempting to define, and
38     *       EXTRA_EXISTING_PACKAGE is the package name of the app which has already
39     *       defined the permission.</td>
40     * </tr>
41     * </table>
42     */
43    void packageInstalled(String basePackageName, in Bundle extras, int returnCode);
44}
45