1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright 2019 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 <string-array name="array_numtests"> 19 <item>5</item> 20 <item>10</item> 21 <item>15</item> 22 <item>30</item> 23 <item>50</item> 24 <item>100</item> 25 <item>250</item> 26 <item>500</item> 27 </string-array> 28 29 <string-array name="array_previewbuffer"> 30 <item>250</item> 31 <item>500</item> 32 <item>750</item> 33 <item>1000</item> 34 <item>1500</item> 35 <item>2000</item> 36 <item>2500</item> 37 <item>5000</item> 38 </string-array> 39 40 <string-array name="array_settings_api"> 41 <item>Camera1</item> 42 <item>Camera2</item> 43 <item>CameraX</item> 44 </string-array> 45 46 <!-- Don't turn CameraX on by default until it is more stable --> 47 <string-array name="array_settings_api_defaults"> 48 <item>Camera1</item> 49 <item>Camera2</item> 50 <item>CameraX</item> 51 </string-array> 52 53 <string-array name="array_settings_imagesize"> 54 <item>Min</item> 55 <item>Max</item> 56 </string-array> 57 58 <string-array name="array_settings_focus"> 59 <item>Auto</item> 60 <item>Continuous</item> 61 </string-array> 62 63 <string-array name="array_single_test_types"> 64 <item>Camera Open/Close</item> 65 <item>Preview Start</item> 66 <item>Switch Cameras</item> 67 <item>Switch Cameras (Multiple)</item> 68 <item>Single Capture</item> 69 <item>Multiple Captures</item> 70 <item>Multiple Captures (Chained)</item> 71 </string-array> 72 73 <string-array name="array_single_test_type_values"> 74 <item>INIT</item> 75 <item>PREVIEW</item> 76 <item>SWITCH_CAMERA</item> 77 <item>MULTI_SWITCH</item> 78 <item>PHOTO</item> 79 <item>MULTI_PHOTO</item> 80 <item>MULTI_PHOTO_CHAIN</item> 81 </string-array> 82 83</resources>