summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
authorDaniel Lehmann <lehmannd@google.com>2011-07-07 17:25:31 -0700
committerDaniel Lehmann <lehmannd@google.com>2011-07-07 17:25:31 -0700
commit3b505de6c622d20d40b85b361c1437a89aef82de (patch)
tree2d96eae80a77a9952c8389b50e071c3d64fb9d2b /res/values
parente47118b8739b42c0abdee11629360e633aa426c6 (diff)
downloadpackages_providers_ContactsProvider-3b505de6c622d20d40b85b361c1437a89aef82de.zip
packages_providers_ContactsProvider-3b505de6c622d20d40b85b361c1437a89aef82de.tar.gz
packages_providers_ContactsProvider-3b505de6c622d20d40b85b361c1437a89aef82de.tar.bz2
Provider implementation of stream item API.
The following URIs are supported: contacts/#/stream_items (query stream items by contact ID) contacts/lookup/*/stream_items (query stream items by lookup key) contacts/lookup/*/#/stream_items (query stream items by both) raw_contacts/#/stream_items (query/insert stream items by raw contact ID) stream_items (query/insert/update/delete stream items) stream_items/photo (query/insert/update stream items) stream_items/# (query/update/delete stream items by ID) stream_items/#/photo (query/insert/delete stream item photos) stream_items/#/photo/# (query/update/delete stream item photos by IDs) stream_items_limit (query limits for stream items and photos) Change-Id: Ice433c53e18087e5e6295ad9a112062d44b12dd2
Diffstat (limited to 'res/values')
-rw-r--r--res/values/config.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/res/values/config.xml b/res/values/config.xml
new file mode 100644
index 0000000..096edf6
--- /dev/null
+++ b/res/values/config.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 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.
+-->
+
+<resources>
+
+ <!-- Maximum size of photos inserted in social stream items -->
+ <integer name="config_stream_item_photo_max_bytes">71680</integer>
+
+</resources>