diff options
author | Santos Cordon <santoscordon@google.com> | 2014-10-31 12:39:44 -0700 |
---|---|---|
committer | Santos Cordon <santoscordon@google.com> | 2014-10-31 14:44:30 -0700 |
commit | 2ef87ee728e7ac76c9199f0b75c96835991c0ceb (patch) | |
tree | 17974d09a864d7fc143a367d888125f522f52e04 | |
parent | 38b00a63c9f637bbe43b6ea3785c9577c43dbac5 (diff) | |
download | frameworks_base-2ef87ee728e7ac76c9199f0b75c96835991c0ceb.zip frameworks_base-2ef87ee728e7ac76c9199f0b75c96835991c0ceb.tar.gz frameworks_base-2ef87ee728e7ac76c9199f0b75c96835991c0ceb.tar.bz2 |
Split Telecom PhoneAccount registration permissions.
Bug: 18106506
Change-Id: Ic825b44c2dc42709073a3990f6a7ca8e372025e9
-rw-r--r-- | api/current.txt | 3 | ||||
-rw-r--r-- | core/res/AndroidManifest.xml | 21 | ||||
-rw-r--r-- | core/res/res/values/strings.xml | 9 |
3 files changed, 25 insertions, 8 deletions
diff --git a/api/current.txt b/api/current.txt index 95f743b..528e3d6 100644 --- a/api/current.txt +++ b/api/current.txt @@ -113,8 +113,9 @@ package android { field public static final java.lang.String RECEIVE_SMS = "android.permission.RECEIVE_SMS"; field public static final java.lang.String RECEIVE_WAP_PUSH = "android.permission.RECEIVE_WAP_PUSH"; field public static final java.lang.String RECORD_AUDIO = "android.permission.RECORD_AUDIO"; + field public static final java.lang.String REGISTER_CALL_PROVIDER = "android.permission.REGISTER_CALL_PROVIDER"; field public static final java.lang.String REGISTER_CONNECTION_MANAGER = "android.permission.REGISTER_CONNECTION_MANAGER"; - field public static final java.lang.String REGISTER_PROVIDER_OR_SUBSCRIPTION = "android.permission.REGISTER_PROVIDER_OR_SUBSCRIPTION"; + field public static final java.lang.String REGISTER_SIM_SUBSCRIPTION = "android.permission.REGISTER_SIM_SUBSCRIPTION"; field public static final java.lang.String REORDER_TASKS = "android.permission.REORDER_TASKS"; field public static final deprecated java.lang.String RESTART_PACKAGES = "android.permission.RESTART_PACKAGES"; field public static final java.lang.String SEND_RESPOND_VIA_MESSAGE = "android.permission.SEND_RESPOND_VIA_MESSAGE"; diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 8e0cd52..6f2a06b 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -1269,13 +1269,24 @@ android:description="@string/permdesc_use_sip" android:label="@string/permlab_use_sip" /> - <!-- Protects the ability to register any PhoneAccount with a capability flags of either - PhoneAccount#CAPABILITY_CALL_PROVIDER or PhoneAccount#CAPABILITY_SIM_SUBSCRIPTION. --> - <permission android:name="android.permission.REGISTER_PROVIDER_OR_SUBSCRIPTION" + <!-- Protects the ability to register any PhoneAccount with + PhoneAccount#CAPABILITY_SIM_SUBSCRIPTION. This capability indicates that the PhoneAccount + corresponds to a device SIM. --> + <permission android:name="android.permission.REGISTER_SIM_SUBSCRIPTION" android:permissionGroup="android.permission-group.PHONE_CALLS" - android:description="@string/permdesc_register_provider" - android:label="@string/permlab_register_provider" /> + android:protectionLevel="system|signature" + android:description="@string/permdesc_register_sim_subscription" + android:label="@string/permlab_register_sim_subscription" /> + + <!-- Protects the ability to register any PhoneAccount with + PhoneAccount#CAPABILITY_CALL_PROVIDER. --> + <permission android:name="android.permission.REGISTER_CALL_PROVIDER" + android:permissionGroup="android.permission-group.PHONE_CALLS" + android:description="@string/permdesc_register_call_provider" + android:label="@string/permlab_register_call_provider" /> + <!-- Protects the ability to register any PhoneAccount with + PhoneAccount#CAPABILITY_CONNECTION_MANAGER --> <permission android:name="android.permission.REGISTER_CONNECTION_MANAGER" android:permissionGroup="android.permission-group.PHONE_CALLS" android:description="@string/permdesc_connection_manager" diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index 27616c7..61fc161 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -2115,9 +2115,14 @@ <string name="permdesc_use_sip">Allows the app to make and receive SIP calls.</string> <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permlab_register_provider">register new telecom connection</string> + <string name="permlab_register_sim_subscription">register new telecom SIM connections</string> <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permdesc_register_provider">Allows the app to register new telecom connections.</string> + <string name="permdesc_register_sim_subscription">Allows the app to register new telecom SIM connections.</string> + + <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> + <string name="permlab_register_call_provider">register new telecom connections</string> + <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> + <string name="permdesc_register_call_provider">Allows the app to register new telecom connections.</string> <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permlab_connection_manager">manage telecom connections</string> |