diff options
| author | 2019-07-30 02:24:42 -0700 | |
|---|---|---|
| committer | 2019-07-30 02:24:42 -0700 | |
| commit | be96072e80c44ae847731cf05e837bfac1cc38d0 (patch) | |
| tree | 9c585a51f20325745140df3e4b0a6deba07ddd83 | |
| parent | e3fb15b96a952d1cf413e77795c955bcac8d11f7 (diff) | |
| parent | bf04132f1c46e1fa0ff1d088087224169cc676e7 (diff) | |
Merge "Create feature flags for OMAPI readers" am: e7bd66528d am: c94e8d38fa
am: bf04132f1c
Change-Id: Ia4b215cd0aab1d34d82d980bc2cb854c79c4a297
| -rw-r--r-- | data/etc/android.hardware.se.omapi.ese.xml | 21 | ||||
| -rw-r--r-- | data/etc/android.hardware.se.omapi.sd.xml | 21 | ||||
| -rw-r--r-- | data/etc/android.hardware.se.omapi.uicc.xml | 21 |
3 files changed, 63 insertions, 0 deletions
diff --git a/data/etc/android.hardware.se.omapi.ese.xml b/data/etc/android.hardware.se.omapi.ese.xml new file mode 100644 index 0000000000..3b1d81cd87 --- /dev/null +++ b/data/etc/android.hardware.se.omapi.ese.xml @@ -0,0 +1,21 @@ +<?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 The device supports + Open Mobile API capable ESE-based secure elements--> +<permissions> + <feature name="android.hardware.se.omapi.ese" /> +</permissions> diff --git a/data/etc/android.hardware.se.omapi.sd.xml b/data/etc/android.hardware.se.omapi.sd.xml new file mode 100644 index 0000000000..8fc2869d23 --- /dev/null +++ b/data/etc/android.hardware.se.omapi.sd.xml @@ -0,0 +1,21 @@ +<?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 The device supports + Open Mobile API capable SD-based secure elements--> +<permissions> + <feature name="android.hardware.se.omapi.sd" /> +</permissions> diff --git a/data/etc/android.hardware.se.omapi.uicc.xml b/data/etc/android.hardware.se.omapi.uicc.xml new file mode 100644 index 0000000000..9c6f143990 --- /dev/null +++ b/data/etc/android.hardware.se.omapi.uicc.xml @@ -0,0 +1,21 @@ +<?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 The device supports + Open Mobile API capable UICC-based secure elements--> +<permissions> + <feature name="android.hardware.se.omapi.uicc" /> +</permissions> |