Advertisement
asyan4ik

Untitled

Sep 23rd, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.48 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. /*
  4. ** Copyright 2009, The Android Open Source Project
  5. **
  6. ** Licensed under the Apache License, Version 2.0 (the "License");
  7. ** you may not use this file except in compliance with the License.
  8. ** You may obtain a copy of the License at
  9. **
  10. ** http://www.apache.org/licenses/LICENSE-2.0
  11. **
  12. ** Unless required by applicable law or agreed to in writing, software
  13. ** distributed under the License is distributed on an "AS IS" BASIS,
  14. ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ** See the License for the specific language governing permissions and
  16. ** limitations under the License.
  17. */
  18. -->
  19.  
  20. <!-- These resources are around just to allow their values to be customized
  21. for different hardware and product builds. -->
  22. <resources>
  23.  
  24. <!-- Package name for default keyguard appwidget [DO NOT TRANSLATE] -->
  25. <string name="widget_default_package_name">com.cyanogenmod.lockclock</string>
  26.  
  27. <!-- Class name for default keyguard appwidget [DO NOT TRANSLATE] -->
  28. <string name="widget_default_class_name">com.cyanogenmod.lockclock.ClockWidgetProvider</string>
  29.  
  30. <bool name="config_cellBroadcastAppLinks">true</bool>
  31.  
  32. <bool name="config_allowAllRotations">true</bool>
  33.  
  34. <!-- Component name of the default wallpaper. This will be ImageWallpaper if not
  35. specified -->
  36. <!--<string name="default_wallpaper_component">com.android.phasebeam/.PhaseBeamWallpaper</string>-->
  37.  
  38. <!-- Default color for notification LED is blue -->
  39. <color name="config_defaultNotificationColor">#ff00ff00</color>
  40.  
  41. <!-- Default blink frequency for notification LED is 2 seconds. -->
  42. <integer name="config_defaultNotificationLedOff">2000</integer>
  43.  
  44. <!-- If this is true, the screen will fade off. -->
  45. <bool name="config_animateScreenLights">false</bool>
  46.  
  47. <!-- Is the notification LED intrusive? Used to decide if there should be a disable option -->
  48. <bool name="config_intrusiveNotificationLed">true</bool>
  49.  
  50. <!-- Is the battery LED intrusive? Used to decide if there should be a disable option -->
  51. <bool name="config_intrusiveBatteryLed">true</bool>
  52.  
  53. <!-- Does the battery LED support multiple colors? Used to decide if the user can change the colors -->
  54. <bool name="config_multiColorBatteryLed">true</bool>
  55.  
  56.  
  57. <bool name="config_sf_limitedAlpha">false</bool>
  58.  
  59. <bool name="config_sf_slowBlur">true</bool>
  60.  
  61. <bool name="config_sendAudioBecomingNoisy">true</bool>
  62.  
  63. <string-array translatable="false" name="networkAttributes">
  64. <item>"wifi,1,1,1,-1,true"</item>
  65. <item>"mobile,0,0,0,-1,true"</item>
  66. <item>"mobile_mms,2,0,2,60000,true"</item>
  67. <item>"mobile_supl,3,0,2,60000,true"</item>
  68. <item>"mobile_dun,4,0,3,60000,true"</item>
  69. <item>"mobile_hipri,5,0,3,60000,true"</item>
  70. <item>"bluetooth,7,0,3,60000,true"</item>
  71. <item>"mobile_fota,10,0,2,60000,true"</item>
  72. <item>"mobile_ims,11,0,2,60000,true"</item>
  73. <item>"mobile_cbs,12,0,2,60000,true"</item>
  74. <item>"wifi_p2p,13,1,0,-1,true"</item>
  75. </string-array>
  76.  
  77. <!-- Array of ConnectivityManager.TYPE_xxxx constants for networks that may only
  78. be controlled by systemOrSignature apps. -->
  79. <integer-array translatable="false" name="config_protectedNetworks">
  80. <item>10</item>
  81. <item>11</item>
  82. <item>12</item>
  83. </integer-array>
  84.  
  85. <!-- This string array should be overridden by the device to present a list of radio
  86. attributes. This is used by the connectivity manager to decide which networks can coexist
  87. based on the hardware -->
  88. <!-- An Array of "[ConnectivityManager connectionType],
  89. [# simultaneous connection types]" -->
  90. <string-array translatable="false" name="radioAttributes">
  91. <item>"1,1"</item>
  92. <item>"0,1"</item>
  93. <item>"2,1"</item>
  94. <item>"7,1"</item>
  95. </string-array>
  96.  
  97. <!-- Set of NetworkInfo.getType() that reflect data usage. -->
  98. <integer-array translatable="false" name="config_data_usage_network_types">
  99. <item>0</item> <!-- TYPE_MOBILE -->
  100. <item>2</item> <!-- TYPE_MOBILE_MMS -->
  101. <item>3</item> <!-- TYPE_MOBILE_SUPL -->
  102. <item>4</item> <!-- TYPE_MOBILE_DUN -->
  103. <item>5</item> <!-- TYPE_MOBILE_HIPRI -->
  104. <item>10</item> <!-- TYPE_MOBILE_FOTA -->
  105. <item>11</item> <!-- TYPE_MOBILE_IMS -->
  106. <item>12</item> <!-- TYPE_MOBILE_CBS -->
  107. </integer-array>
  108.  
  109. <string-array translatable="false" name="config_tether_usb_regexs">
  110. <item>"rndis0"</item>
  111. </string-array>
  112.  
  113. <string-array translatable="false" name="config_tether_wifi_regexs">
  114. <item>"wlan0"</item>
  115. </string-array>
  116.  
  117. <string-array translatable="false" name="config_tether_bluetooth_regexs">
  118. <item>"bt-pan"</item>
  119. </string-array>
  120.  
  121. <integer-array translatable="false" name="config_tether_upstream_types">
  122. <item>0</item>
  123. <item>1</item>
  124. <item>5</item>
  125. <item>7</item>
  126. </integer-array>
  127.  
  128. <!-- The default iface on which to monitor data use -->
  129. <string name="config_datause_iface">rmnet0</string>
  130.  
  131. <string-array translatable="false" name="config_serialPorts">
  132. <item>/dev/ttyACM0</item>
  133. </string-array>
  134.  
  135. <bool translatable="false" name="config_wifi_background_scan_support">false</bool>
  136.  
  137. <bool translatable="false" name="config_wifi_dual_band_support">true</bool>
  138.  
  139. <bool name="config_unplugTurnsOnScreen">true</bool>
  140.  
  141. <string-array name="config_locationProviderPackageNames" translatable="false">
  142. <!-- The standard AOSP fused location provider -->
  143. <item>com.android.location.fused</item>
  144. <!-- The Google Network Location Services location provider -->
  145. <item>com.google.android.location</item>
  146. </string-array>
  147.  
  148. <bool name="config_showNavigationBar">true</bool>
  149.  
  150. <bool name="config_automatic_brightness_available">true</bool>
  151.  
  152. <bool name="config_batterySdCardAccessibility">true</bool>
  153.  
  154. <bool name="config_enableLockScreenRotation">true</bool>
  155.  
  156. <integer-array name="config_autoBrightnessLevels">
  157. <item>8</item>
  158. <item>55</item>
  159. <item>350</item>
  160. <item>1050</item>
  161. <item>2050</item>
  162. </integer-array>
  163.  
  164. <!-- Array of output values for LCD backlight corresponding to the LUX values
  165. in the config_autoBrightnessLevels array. This array should have size one greater
  166. than the size of the config_autoBrightnessLevels array.
  167. -->
  168. <integer-array name="config_autoBrightnessLcdBacklightValues">
  169. <item>62</item> <!-- 0 - 3 -->
  170. <item>62</item> <!-- 3 - 6 -->
  171. <item>113</item> <!-- 6 - 12 -->
  172. <item>135</item> <!-- 12 - 19 -->
  173. <item>135</item> <!-- 19 - 25 -->
  174. <item>255</item> <!-- 25 - 50 -->
  175. </integer-array>
  176.  
  177. <!-- Array of output values for button backlight corresponding to the LUX values
  178. in the config_autoBrightnessLevels array. This array should have size one greater
  179. than the size of the config_autoBrightnessLevels array.
  180. -->
  181. <integer-array name="config_autoBrightnessButtonBacklightValues">
  182. <item>255</item>
  183. <item>255</item>
  184. <item>0</item>
  185. <item>0</item>
  186. <item>0</item>
  187. <item>0</item>
  188. </integer-array>
  189.  
  190. <!-- Array of output values for keyboard backlight corresponding to the LUX values
  191. in the config_autoBrightnessLevels array. This array should have size one greater
  192. than the size of the config_autoBrightnessLevels array.
  193. i9300 has no keyboard so all values are zero.
  194. -->
  195. <integer-array name="config_autoBrightnessKeyboardBacklightValues">
  196. <item>16</item>
  197. <item>40</item>
  198. <item>60</item>
  199. <item>70</item>
  200. <item>70</item>
  201. <item>250</item>
  202. </integer-array>
  203.  
  204.  
  205. <bool name="config_voice_capable">true</bool>
  206.  
  207. <bool name="config_sms_capable">true</bool>
  208.  
  209. <bool name="config_bluetooth_sco_off_call">true</bool>
  210.  
  211. <bool name="config_sip_wifi_only">false</bool>
  212.  
  213. <!-- Enables built-in SIP phone capability -->
  214. <bool name="config_built_in_sip_phone">true</bool>
  215.  
  216. <integer name="config_downloadDataDirSize">200</integer>
  217.  
  218. <!-- Max number of downloads allowed to proceed concurrently -->
  219. <integer name="config_MaxConcurrentDownloadsAllowed">7</integer>
  220.  
  221. <bool name="config_dreamsSupported">true</bool>
  222.  
  223. <integer name="config_multiuserMaximumUsers">8</integer>
  224.  
  225. <!-- reference volume index for music stream to limit headphone volume and display warning -->
  226. <integer name="config_safe_media_volume_index">15</integer>
  227.  
  228. <bool name="config_camera_sound_forced">true</bool>
  229.  
  230. <bool name="config_hasRotationLockSwitch">true</bool>
  231.  
  232. <!--string name="config_legacyUmsLunFile">/sys/class/android_usb/f_mass_storage/lun/file</string>
  233.  
  234. Hardware 'face' keys present on the device, stored as a bit field.
  235. This integer should equal the sum of the corresponding value for each
  236. of the following keys present:
  237. 1 - Home
  238. 2 - Back
  239. 4 - Menu
  240. 8 - Assistant (search)
  241. 16 - App switch
  242. For example, a device with Home, Back and Menu keys would set this
  243. config to 7. -->
  244. <integer name="config_deviceHardwareKeys">7</integer>
  245.  
  246. </resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement