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 { onUserActionRequired(in Intent intent)28 void onUserActionRequired(in Intent intent); 29 30 /** 31 * The install operation has completed. {@code returnCode} holds a numeric code 32 * indicating success or failure. In certain cases the {@code extras} Bundle will 33 * contain additional details: 34 * 35 * <p><table> 36 * <tr> 37 * <td>INSTALL_FAILED_DUPLICATE_PERMISSION</td> 38 * <td>Two strings are provided in the extras bundle: EXTRA_EXISTING_PERMISSION 39 * is the name of the permission that the app is attempting to define, and 40 * EXTRA_EXISTING_PACKAGE is the package name of the app which has already 41 * defined the permission.</td> 42 * </tr> 43 * </table> 44 */ onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras)45 void onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras); 46 } 47