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

Commit 5f1a47b8 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 5422062 from 945a7006 to qt-release

Change-Id: Icdc99614f67c93bc22e945c1f5a1af6033030806
parents 50cc2651 945a7006
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2019 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<!-- This feature indicates that the device supports eSE-based NFC card
     emulation -->
<permissions>
    <feature name="android.hardware.nfc.ese" />
</permissions>
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2019 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<!-- This feature indicates that the device supports uicc-based NFC card
     emulation -->
<permissions>
    <feature name="android.hardware.nfc.uicc" />
</permissions>
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@
cc_library {
    name: "libandroid_runtime_lazy",
    vendor_available: true,
    double_loadable: true,

    cflags: [
        "-Wall",
+18 −0
Original line number Diff line number Diff line
@@ -59,4 +59,22 @@ interface IPackageManagerNative {
     * Unknown packages are mapped to false.
     */
    boolean[] isAudioPlaybackCaptureAllowed(in @utf8InCpp String[] packageNames);

    /*  ApplicationInfo.isSystemApp() == true */
    const int LOCATION_SYSTEM = 0x1;
    /*  ApplicationInfo.isVendor() == true */
    const int LOCATION_VENDOR = 0x2;
    /*  ApplicationInfo.isProduct() == true */
    const int LOCATION_PRODUCT = 0x4;
    /*  ApplicationInfo.isProductServices() == true */
    const int LOCATION_PRODUCT_SERVICES = 0x8;

    /**
     * Returns a set of bitflags about package location.
     * LOCATION_SYSTEM: getApplicationInfo(packageName).isSystemApp()
     * LOCATION_VENDOR: getApplicationInfo(packageName).isVendor()
     * LOCATION_PRODUCT: getApplicationInfo(packageName).isProduct()
     * LOCATION_PRODUCT_SERVICES: getApplicationInfo(packageName).isProductService()
     */
    int getLocationFlags(in @utf8InCpp String packageName);
}
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ cc_library_shared {
        "libbase",
        "libbinder",
        "libcutils",
        "libdl_android",
        "liblog",
        "libutils",
    ],
Loading