Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd439a21 authored by Przemyslaw Szczepaniak's avatar Przemyslaw Szczepaniak Committed by android-build-merger
Browse files

Merge changes from topic "nnapi_ext_restrict"

am: 8854a3d5

Change-Id: Id3e9147039ec279e0392983e8b9ecfa25cbb66b7
parents 7783731c 8854a3d5
Loading
Loading
Loading
Loading
+0 −3
Original line number Original line Diff line number Diff line
@@ -60,15 +60,12 @@ interface IPackageManagerNative {
    const int LOCATION_VENDOR = 0x2;
    const int LOCATION_VENDOR = 0x2;
    /*  ApplicationInfo.isProduct() == true */
    /*  ApplicationInfo.isProduct() == true */
    const int LOCATION_PRODUCT = 0x4;
    const int LOCATION_PRODUCT = 0x4;
    /*  ApplicationInfo.isProductServices() == true */
    const int LOCATION_PRODUCT_SERVICES = 0x8;


    /**
    /**
     * Returns a set of bitflags about package location.
     * Returns a set of bitflags about package location.
     * LOCATION_SYSTEM: getApplicationInfo(packageName).isSystemApp()
     * LOCATION_SYSTEM: getApplicationInfo(packageName).isSystemApp()
     * LOCATION_VENDOR: getApplicationInfo(packageName).isVendor()
     * LOCATION_VENDOR: getApplicationInfo(packageName).isVendor()
     * LOCATION_PRODUCT: getApplicationInfo(packageName).isProduct()
     * LOCATION_PRODUCT: getApplicationInfo(packageName).isProduct()
     * LOCATION_PRODUCT_SERVICES: getApplicationInfo(packageName).isProductService()
     */
     */
    int getLocationFlags(in @utf8InCpp String packageName);
    int getLocationFlags(in @utf8InCpp String packageName);
}
}