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 17 package android.content.pm; 18 19 import android.content.Intent; 20 import 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 */ 27 oneway interface IPackageInstallObserver2 { 28 @UnsupportedAppUsage onUserActionRequired(in Intent intent)29 void onUserActionRequired(in Intent intent); 30 31 /** 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 */ 46 @UnsupportedAppUsage onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras)47 void onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras); 48 } 49