Adam Lesinski | 2c72b68 | 2014-06-24 09:56:01 -0700 | [diff] [blame] | 1 | <?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 Lesinski | d7a94da | 2014-07-25 14:38:54 -0700 | [diff] [blame] | 33 | <uses-feature android:name="android.hardware.opengles.aep" /> |
Adam Lesinski | 2c72b68 | 2014-06-24 09:56:01 -0700 | [diff] [blame] | 34 | </feature-group> |
| 35 | |
Adam Lesinski | d3edfde | 2014-08-08 17:32:44 -0700 | [diff] [blame] | 36 | <application android:label="@string/app_title" android:hasCode="false" /> |
Adam Lesinski | 2c72b68 | 2014-06-24 09:56:01 -0700 | [diff] [blame] | 37 | </manifest> |