blob: 63066f6d448a41e246edc5bc025c5cda1e1c49ca [file] [log] [blame]
Trevor Johns6876a9c2014-10-17 03:31:00 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright 2014 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<manifest
18 package="com.example.android.hdrviewfinder"
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:versionCode="1"
21 android:versionName="1.0">
22
Trevor Johns6876a9c2014-10-17 03:31:00 -070023 <uses-feature android:name="android.hardware.camera"/>
24 <uses-feature
25 android:name="android.hardware.camera.front"
26 android:required="false"/>
27
28 <uses-permission android:name="android.permission.CAMERA"/>
29 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
Trevor Johns6876a9c2014-10-17 03:31:00 -070030
31 <application
32 android:allowBackup="true"
33 android:icon="@drawable/ic_launcher"
34 android:label="@string/app_name"
35 android:theme="@style/AppTheme">
36
37 <activity
38 android:name=".HdrViewfinderActivity"
39 android:label="@string/app_name"
Trevor Johnsd95a6872015-08-13 21:10:42 -070040 android:screenOrientation="landscape"
41 android:theme="@style/Theme.AppCompat.Light">
Trevor Johns6876a9c2014-10-17 03:31:00 -070042 <intent-filter>
43 <action android:name="android.intent.action.MAIN"/>
44 <category android:name="android.intent.category.LAUNCHER"/>
45 </intent-filter>
46 </activity>
47 </application>
48
49
50</manifest>