diff options
| author | Ruchi Kandoi <kandoiruchi@google.com> | 2018-06-04 13:40:46 -0700 |
|---|---|---|
| committer | Ruchi Kandoi <kandoiruchi@google.com> | 2018-06-05 13:43:02 -0700 |
| commit | c78d86cdba4565a1f4dffe1730644ba0a1c6d3e9 (patch) | |
| tree | b8c215a2cc3a6ff86e272178a4ff50048e959364 /nfc | |
| parent | fb7d957231f1e299e1438ad1aa643bcbb2b01e1e (diff) | |
Add sku specific manifest file
Japan sku will instantiate eSE1 instance of Secure Element HAL
RoW sku will instantiate SIM1 instance of Secure Element HAL
Bug: 109674921
Test: Test with RoW & Japan SKU
Change-Id: I4d8ac2c3439ae84cd3c7d771c7930c1e370ba3f1
Diffstat (limited to 'nfc')
| -rw-r--r-- | nfc/manifest_se_SIM1.xml | 11 | ||||
| -rw-r--r-- | nfc/manifest_se_eSE1.xml | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/nfc/manifest_se_SIM1.xml b/nfc/manifest_se_SIM1.xml new file mode 100644 index 0000000..5545223 --- /dev/null +++ b/nfc/manifest_se_SIM1.xml @@ -0,0 +1,11 @@ +<manifest version="1.0" type="device"> + <hal format="hidl"> + <name>android.hardware.secure_element</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>ISecureElement</name> + <instance>SIM1</instance> + </interface> + </hal> +</manifest> diff --git a/nfc/manifest_se_eSE1.xml b/nfc/manifest_se_eSE1.xml new file mode 100644 index 0000000..45aed8f --- /dev/null +++ b/nfc/manifest_se_eSE1.xml @@ -0,0 +1,11 @@ +<manifest version="1.0" type="device"> + <hal format="hidl"> + <name>android.hardware.secure_element</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>ISecureElement</name> + <instance>eSE1</instance> + </interface> + </hal> +</manifest> |
