diff options
author | Brian Attwell <brianattwell@google.com> | 2014-07-16 21:43:54 -0700 |
---|---|---|
committer | Brian Attwell <brianattwell@google.com> | 2014-07-18 10:43:31 -0700 |
commit | bdb13c8c07f07d405e74f479068eb972d509cea5 (patch) | |
tree | c6d066ca313d6e5da0099215ed074110ba046fc5 /core/res/AndroidManifest.xml | |
parent | c8fa3ae2ce238843496d7aa3f1c4042bb9bb98b4 (diff) | |
download | frameworks_base-bdb13c8c07f07d405e74f479068eb972d509cea5.zip frameworks_base-bdb13c8c07f07d405e74f479068eb972d509cea5.tar.gz frameworks_base-bdb13c8c07f07d405e74f479068eb972d509cea5.tar.bz2 |
Mark social APIs stream APIs as deprecated
Bug: 14490632
Change-Id: I6b54613514e52f34cfcc37d25493a7ea7d636a86
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r-- | core/res/AndroidManifest.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index c9fd6c4..b29999d 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -481,7 +481,9 @@ android:label="@string/permlab_writeCallLog" android:description="@string/permdesc_writeCallLog" /> - <!-- Allows an application to read from the user's social stream. --> + <!-- Allows an application to read from the user's social stream. + @deprecated This functionality will be unsupported in the future; cursors returned + will be empty. Please do not use. --> <permission android:name="android.permission.READ_SOCIAL_STREAM" android:permissionGroup="android.permission-group.SOCIAL_INFO" android:protectionLevel="dangerous" @@ -489,7 +491,9 @@ android:description="@string/permdesc_readSocialStream" /> <!-- Allows an application to write (but not read) the user's - social stream data. --> + social stream data. + @deprecated This functionality will be unsupported in the future; cursors returned + will be empty. Please do not use. --> <permission android:name="android.permission.WRITE_SOCIAL_STREAM" android:permissionGroup="android.permission-group.SOCIAL_INFO" android:protectionLevel="dangerous" |