blob: 8caf4a15886721702d52a49d7a6e79b6cae239ad [file] [log] [blame]
Adam Lesinski2c72b682014-06-24 09:56:01 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.test.usesfeature2">
19
20 <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
21
22 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
23 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
24 <uses-permission android:name="android.permission.BLUETOOTH" />
25
26 <uses-feature android:name="android.hardware.sensor.accelerometer" />
27 <feature-group android:label="@string/minimal">
28 <uses-feature android:name="android.hardware.dpad" />
29 <uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" />
30 </feature-group>
31 <feature-group android:label="@string/gamepad">
32 <uses-feature android:name="android.hardware.gamepad" />
Adam Lesinskid7a94da2014-07-25 14:38:54 -070033 <uses-feature android:name="android.hardware.opengles.aep" />
Adam Lesinski2c72b682014-06-24 09:56:01 -070034 </feature-group>
35
Adam Lesinskid3edfde2014-08-08 17:32:44 -070036 <application android:label="@string/app_title" android:hasCode="false" />
Adam Lesinski2c72b682014-06-24 09:56:01 -070037</manifest>