summaryrefslogtreecommitdiffstats
path: root/core/res/AndroidManifest.xml
diff options
context:
space:
mode:
authorJake Hamby <jhamby@google.com>2011-07-21 17:55:53 -0700
committerJake Hamby <jhamby@google.com>2011-08-26 12:33:11 -0700
commit463f22114587344c96460179069a08d7381fbfd6 (patch)
treefa65e156577b3cff84a5351f0272d0a8b0d7aa86 /core/res/AndroidManifest.xml
parentb59997f7cea7f381cba0803ecf7c6f93c935b850 (diff)
downloadframeworks_base-463f22114587344c96460179069a08d7381fbfd6.zip
frameworks_base-463f22114587344c96460179069a08d7381fbfd6.tar.gz
frameworks_base-463f22114587344c96460179069a08d7381fbfd6.tar.bz2
Add ISIM application support for LTE devices.
- Add methods to TelephonyManager to provide access to IMS records on the ISIM application of the UICC, as well as access to the ISIM AKA authentication algorithm. - Add support for the new IMS methods to CDMALTEPhone, using the helper class ImsUiccRecords to load the IMS records from the ISIM. The same approach can be used to implement IMS support for UMTS/LTE devices. - There is a new RIL request, RIL_REQUEST_ISIM_AUTHENTICATION, which is used to perform IMS AKA authentication using the algorithm on the ISIM application of the UICC. The challenge nonce and response are both encoded as Base64 strings. Change-Id: I73367c7d9bc573d0d883d68adf09891de1319129
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r--core/res/AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index 2dbb0b2..540c65a 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -582,6 +582,12 @@
android:label="@string/permlab_readPhoneState"
android:description="@string/permdesc_readPhoneState" />
+ <!-- Allows read access to privileged phone state.
+ @hide Used internally. -->
+ <permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
+ android:permissionGroup="android.permission-group.PHONE_CALLS"
+ android:protectionLevel="signatureOrSystem" />
+
<!-- ================================== -->
<!-- Permissions for sdcard interaction -->
<!-- ================================== -->