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<!-- These are the hardware components that all handheld devices 18 must include. Devices with optional hardware must also include extra 19 hardware files, per the comments below. 20 21 Handheld devices include phones, mobile Internet devices (MIDs), 22 Personal Media Players (PMPs), small tablets (7" or less), and similar 23 devices. 24--> 25<permissions> 26 <feature name="android.hardware.audio.output" /> 27 <feature name="android.hardware.location" /> 28 <feature name="android.hardware.location.network" /> 29 <feature name="android.hardware.bluetooth" /> 30 <feature name="android.hardware.touchscreen" /> 31 <feature name="android.hardware.microphone" /> 32 <!-- Feature to specify if the device is a car --> 33 <feature name="android.hardware.type.automotive" /> 34 35 <!-- basic system services --> 36 <feature name="android.software.app_widgets" /> 37 <feature name="android.software.connectionservice" /> 38 <feature name="android.software.voice_recognizers" notLowRam="true" /> 39 <feature name="android.software.backup" /> 40 <feature name="android.software.home_screen" /> 41 <feature name="android.software.input_methods" /> 42 <feature name="android.software.print" /> 43 44 <!-- Feature to specify if the device supports adding device admins. --> 45 <feature name="android.software.device_admin" /> 46 47 <!-- Feature to specify if the device support managed users. --> 48 <feature name="android.software.managed_users" /> 49 50 <!-- devices with GPS must include android.hardware.location.gps.xml --> 51 <!-- devices with an autofocus camera and/or flash must include either 52 android.hardware.camera.autofocus.xml or 53 android.hardware.camera.autofocus-flash.xml --> 54 <!-- devices with a front facing camera must include 55 android.hardware.camera.front.xml --> 56 <!-- devices with WiFi must also include android.hardware.wifi.xml --> 57 <!-- devices that support multitouch must include the most appropriate one 58 of these files: 59 60 If only partial (non-independent) pointers are supported: 61 android.hardware.touchscreen.multitouch.xml 62 63 If up to 4 independently tracked pointers are supported: 64 include android.hardware.touchscreen.multitouch.distinct.xml 65 66 If 5 or more independently tracked pointers are supported: 67 include android.hardware.touchscreen.multitouch.jazzhand.xml 68 69 ONLY ONE of the above should be included. --> 70 <!-- devices with an ambient light sensor must also include 71 android.hardware.sensor.light.xml --> 72 <!-- devices with a proximity sensor must also include 73 android.hardware.sensor.proximity.xml --> 74 <!-- GSM phones must also include android.hardware.telephony.gsm.xml --> 75 <!-- CDMA phones must also include android.hardware.telephony.cdma.xml --> 76 <!-- Devices that have low-latency audio stacks suitable for apps like 77 VoIP may include android.hardware.audio.low_latency.xml. ONLY apps 78 that meet the requirements specified in the CDD may include this. --> 79</permissions> 80