summaryrefslogtreecommitdiffstats
path: root/core/res/AndroidManifest.xml
diff options
context:
space:
mode:
authorTom Taylor <tomtaylor@google.com>2011-08-11 14:27:25 -0700
committerTom Taylor <tomtaylor@google.com>2011-08-15 10:27:53 -0700
commitb0381688b8556f4f0a86bb534c8bc52275f16d12 (patch)
tree54a281f5436a1423b46e7bfb33ccb074ab7651b2 /core/res/AndroidManifest.xml
parent186c1683ce6a6c7e845b06b8c0706ef7950c6608 (diff)
downloadframeworks_base-b0381688b8556f4f0a86bb534c8bc52275f16d12.zip
frameworks_base-b0381688b8556f4f0a86bb534c8bc52275f16d12.tar.gz
frameworks_base-b0381688b8556f4f0a86bb534c8bc52275f16d12.tar.bz2
Add private permission for sending SMS via Messaging app
When the phone dialer sends an sms, it will use the Messaging app. That way the sent messages will end up in the messaging provider db and sending will be more reliable. Currently, the phone dialer uses the SmsManager directly. For now, the feature is only available to system apps and the permission is private. Bug 4563486 Change-Id: I10f7e1042683164ee61d01a2aaf738d19084da72
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r--core/res/AndroidManifest.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index dc0106c..b9868db 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -122,6 +122,15 @@
android:label="@string/permlab_sendSms"
android:description="@string/permdesc_sendSms" />
+ <!-- Allows an application to send SMS messages via the Messaging app with no user
+ input or confirmation.
+ @hide -->
+ <permission android:name="android.permission.SEND_SMS_NO_CONFIRMATION"
+ android:permissionGroup="android.permission-group.COST_MONEY"
+ android:protectionLevel="signatureOrSystem"
+ android:label="@string/permlab_sendSmsNoConfirmation"
+ android:description="@string/permdesc_sendSmsNoConfirmation" />
+
<!-- Allows an application to initiate a phone call without going through
the Dialer user interface for the user to confirm the call
being placed. -->
@@ -1413,7 +1422,7 @@
android:description="@string/permdesc_modifyNetworkAccounting"
android:protectionLevel="signatureOrSystem" />
- <!-- C2DM permission.
+ <!-- C2DM permission.
@hide Used internally.
-->
<permission android:name="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"