1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2011 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 <!-- This resource is true if running under at least Honeycomb's 19 API level. The default value is false; an alternative value 20 for Honeycomb is true. --> 21 <bool name="atLeastHoneycomb">false</bool> 22 <!-- This resource is true if running under at least Honeycomb MR2's 23 API level. The default value is false; an alternative value 24 for Honeycomb MR2 is true. --> 25 <bool name="atLeastHoneycombMR2">false</bool> 26 27 <!-- This resource is true if running under at least IceCreamSandwich 28 API level. The default value is false; an alternative value 29 for IceCreamSandwich is true. --> 30 <bool name="atLeastIceCreamSandwich">false</bool> 31 32 <!-- This resource is true if running under at least JellyBean 33 API level. The default value is false; an alternative value 34 for JellyBean is true. --> 35 <bool name="atLeastJellyBean">false</bool> 36 37 <!-- This resource is true if running under at least JellyBean MR1 38 API level. The default value is false; an alternative value 39 for JellyBean MR 1 is true. --> 40 <bool name="atLeastJellyBeanMR1">false</bool> 41 42 <!-- This resource is true if running under at least JellyBean MR2 43 API level. The default value is false; an alternative value 44 for JellyBean MR 2 is true. --> 45 <bool name="atLeastJellyBeanMR2">false</bool> 46 47 <!-- This resource is true if running under at least KitKat 48 API level. The default value is false; an alternative value 49 for KitKat is true. --> 50 <bool name="atLeastKitKat">false</bool> 51 52 <!-- This resource is true if running under at least L-Release 53 API level. The default value is false; an alternative value 54 for L-Release is true. --> 55 <bool name="atLeastLRelease">false</bool> 56 57</resources> 58