Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2015 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <resources>
     18     <!-- Intentionally unset. Vendors should set this in an overlay. -->
     19     <string name="trusted_quick_viewer_package" translatable="false"></string>
     20 
     21     <bool name="show_documents_root">false</bool>
     22 
     23     <!-- Indicates if DocumentsUI should handle VIEW_DOWNLOADS Intent.
     24     on ARC++ devices, there exists another handler which handles VIEW_DOWNLOADS Intent. -->
     25     <bool name="handle_view_downloads_intent">true</bool>
     26 
     27     <!-- Indicates if search view is taking the whole toolbar space. On larger
     28          layouts we reduce this to an input-box adjacent to menu actions. -->
     29     <bool name="full_bar_search_view">true</bool>
     30 
     31     <string name="default_root_uri" translatable="false">content://com.android.providers.downloads.documents/root/downloads</string>
     32 
     33     <string name="datetime_format_12" translatable="false">MMM dd, yyyy, h:mm a</string>
     34     <string name="datetime_format_24" translatable="false">MMM dd, yyyy, H:mm</string>
     35 
     36     <!--
     37         New features must be added behind a boolean flag prefixed w/ "feature_".
     38         Please add them in alphabetical order. Same goes for accessor
     39         methods in Features class.
     40     -->
     41     <bool name="feature_archive_creation">true</bool>
     42     <bool name="feature_command_interceptor">false</bool>
     43     <bool name="feature_content_paging">true</bool>
     44     <bool name="feature_content_refresh">true</bool>
     45     <bool name="feature_folders_in_search_results">true</bool>
     46     <bool name="feature_gesture_scale">true</bool>
     47     <bool name="feature_job_progress_dialog">false</bool>
     48     <bool name="feature_launch_to_document">true</bool>
     49     <bool name="feature_notification_channel">true</bool>
     50     <bool name="feature_overwrite_confirmation">true</bool>
     51     <bool name="feature_remote_actions">true</bool>
     52     <bool name="feature_system_keyboard_navigation">true</bool>
     53     <bool name="feature_virtual_files_sharing">true</bool>
     54     <bool name="feature_inspector">true</bool>
     55     <bool name="feature_debug_mode">false</bool>
     56 
     57     <!-- Indicates if internal storage is shown as default or not. -->
     58     <bool name="config_default_show_device_root">false</bool>
     59 
     60     <!-- This option allows us to hide the Files app icon from launcher on Android Go device.
     61     Android Go device will have Files Go app for file management. -->
     62     <bool name="is_launcher_enabled">true</bool>
     63 </resources>
     64