wearable_core_hardware.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2014 The Android Open Source Project
  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. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <!-- These are the hardware and software components that all wearable devices
  14. must include. Devices with optional hardware/software must also include
  15. extra hardware/software files, per the comments below.
  16. Wearable devices include watches, glasses, backpacks, and sweaters.
  17. -->
  18. <permissions>
  19. <feature name="android.hardware.location" />
  20. <feature name="android.hardware.sensor.compass" />
  21. <feature name="android.hardware.sensor.accelerometer" />
  22. <feature name="android.hardware.bluetooth" />
  23. <feature name="android.hardware.touchscreen" />
  24. <feature name="android.hardware.microphone" />
  25. <!-- basic system services -->
  26. <feature name="android.software.home_screen" />
  27. <!-- devices that support a device administrator policy must include
  28. android.software.device_admin.xml -->
  29. <!-- devices with GPS must include device/google/clockwork/gps.xml -->
  30. <!-- devices with an autofocus camera and/or flash must include either
  31. android.hardware.camera.autofocus.xml or
  32. android.hardware.camera.autofocus-flash.xml -->
  33. <!-- devices with a front facing camera must include
  34. android.hardware.camera.front.xml -->
  35. <!-- devices with WiFi must also include android.hardware.wifi.xml -->
  36. <!-- devices that support multitouch must include the most appropriate one
  37. of these files:
  38. If only partial (non-independent) pointers are supported:
  39. android.hardware.touchscreen.multitouch.xml
  40. If up to 4 independently tracked pointers are supported:
  41. include android.hardware.touchscreen.multitouch.distinct.xml
  42. If 5 or more independently tracked pointers are supported:
  43. include android.hardware.touchscreen.multitouch.jazzhand.xml
  44. ONLY ONE of the above should be included. -->
  45. <!-- devices with an ambient light sensor must also include
  46. android.hardware.sensor.light.xml -->
  47. <!-- devices with a proximity sensor must also include
  48. android.hardware.sensor.proximity.xml -->
  49. <!-- Devices that have low-latency audio stacks suitable for apps like
  50. VoIP may include android.hardware.audio.low_latency.xml. ONLY apps
  51. that meet the requirements specified in the CDD may include this. -->
  52. <!-- devices that have audio output capability as specified in the CDD must
  53. also include android.hardware.audio.output.xml -->
  54. </permissions>