1# Copyright (C) 2018 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15module: "android.sysprop.ContactsProperties" 16owner: Platform 17 18prop { 19 api_name: "aggregate_contacts" 20 type: Boolean 21 scope: Internal 22 access: Readonly 23 prop_name: "sync.contacts.aggregate" 24} 25 26prop { 27 api_name: "debug_scan_all_packages" 28 type: Boolean 29 scope: Internal 30 access: Readonly 31 prop_name: "debug.cp2.scan_all_packages" 32} 33 34# If present, overrides the size determined for the display photo 35prop { 36 api_name: "display_photo_size" 37 type: Integer 38 scope: Internal 39 access: Readonly 40 prop_name: "contacts.display_photo_size" 41} 42 43# 44# If set to true, we don't remove account data when accounts have been removed. 45# 46# This should be used sparingly; even though there are data still available, the UI 47# don't know anything about them, so they won't show up in the contact filter screen, and 48# the contact card/editor may get confused to see unknown custom mimetypes. 49# 50# We can't spell it out because a property name must be less than 32 chars. 51# 52prop { 53 api_name: "keep_stale_account_data" 54 type: Boolean 55 scope: Internal 56 access: Readonly 57 prop_name: "debug.contacts.ksad" 58} 59 60# If present, overrides the size given in DEFAULT_THUMBNAIL 61prop { 62 api_name: "thumbnail_size" 63 type: Integer 64 scope: Internal 65 access: Readonly 66 prop_name: "contacts.thumbnail_size" 67} 68