blob: ed2eb7dceff5afcb51db1829f5da07fd87a5472a [file] [log] [blame]
Christopher Tatef1977b42014-03-24 16:25:51 -07001/*
Jeff Sharkey3a44f3f2014-04-28 17:36:31 -07002 * 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 */
Christopher Tatef1977b42014-03-24 16:25:51 -070016
17package android.content.pm;
18
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -070019import android.content.Intent;
Christopher Tatef1977b42014-03-24 16:25:51 -070020import 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 {
Andrei Oneaf650e3c2019-02-25 13:15:54 +000028 @UnsupportedAppUsage
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -070029 void onUserActionRequired(in Intent intent);
30
Christopher Tatef1977b42014-03-24 16:25:51 -070031 /**
32 * The install operation has completed. {@code returnCode} holds a numeric code
33 * indicating success or failure. In certain cases the {@code extras} Bundle will
34 * contain additional details:
35 *
36 * <p><table>
37 * <tr>
38 * <td>INSTALL_FAILED_DUPLICATE_PERMISSION</td>
39 * <td>Two strings are provided in the extras bundle: EXTRA_EXISTING_PERMISSION
40 * is the name of the permission that the app is attempting to define, and
41 * EXTRA_EXISTING_PACKAGE is the package name of the app which has already
42 * defined the permission.</td>
43 * </tr>
44 * </table>
45 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +000046 @UnsupportedAppUsage
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -070047 void onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras);
Christopher Tatef1977b42014-03-24 16:25:51 -070048}