diff options
| author | 2024-07-16 12:53:54 +0530 | |
|---|---|---|
| committer | 2024-08-16 11:46:24 +0000 | |
| commit | edcd158488cb9b95d5f97930e6da0e002893f274 (patch) | |
| tree | 7dae5bd649cd4a660abf1f6bfff14da31e9e6829 | |
| parent | 9b0609b038686e05315b9eed99d77c312c7af67d (diff) | |
Added dynamic route location update support for type-F
technology through overrideRoutingTable API.
Bug: 351995508
Test: Manual Test, set tech route through overrideRoutingTable API.
Change-Id: I31fd1eecea128e17e8af9776e5c7c628d895b273
| -rw-r--r-- | nfc/java/android/nfc/cardemulation/CardEmulation.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nfc/java/android/nfc/cardemulation/CardEmulation.java b/nfc/java/android/nfc/cardemulation/CardEmulation.java index 03372b206f48..0605dbe130d3 100644 --- a/nfc/java/android/nfc/cardemulation/CardEmulation.java +++ b/nfc/java/android/nfc/cardemulation/CardEmulation.java @@ -914,7 +914,8 @@ public final class CardEmulation { * otherwise a call to this method will fail and throw {@link SecurityException}. * @param activity The Activity that requests NFC controller routing table to be changed. * @param protocol ISO-DEP route destination, which can be "DH" or "UICC" or "ESE". - * @param technology Tech-A, Tech-B route destination, which can be "DH" or "UICC" or "ESE". + * @param technology Tech-A, Tech-B and Tech-F route destination, which can be "DH" or "UICC" + * or "ESE". * @throws SecurityException if the caller is not the preferred NFC service * @throws IllegalArgumentException if the activity is not resumed or the caller is not in the * foreground, or both protocol route and technology route are null. |