Merge "Fix work profile applications do not receive event transaction data" am: 67bf96eac9 am: 13a74e1f60 am: 25adfeb86a

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1838431

Change-Id: I10cf146143047197b7e0fbef5d3e9549bf86c56f
This commit is contained in:
Treehugger Robot
2021-11-26 14:19:04 +00:00
committed by Automerger Merge Worker
2 changed files with 3 additions and 3 deletions

View File

@@ -41,5 +41,5 @@ package android.se.omapi;
interface ISecureElementService {
String[] getReaders();
android.se.omapi.ISecureElementReader getReader(in String reader);
boolean[] isNFCEventAllowed(in String reader, in byte[] aid, in String[] packageNames);
boolean[] isNfcEventAllowed(in String reader, in byte[] aid, in String[] packageNames, in int userId);
}

View File

@@ -52,7 +52,7 @@ interface ISecureElementService {
* Checks if the application defined by the package name is allowed to
* receive NFC transaction events for the defined AID.
*/
boolean[] isNFCEventAllowed(in String reader, in byte[] aid,
in String[] packageNames);
boolean[] isNfcEventAllowed(in String reader, in byte[] aid,
in String[] packageNames, in int userId);
}