1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 3 Copyright 2013 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 18 19 20 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 21 package="com.example.android.mediarecorder" 22 android:versionCode="1" 23 android:versionName="1.0"> 24 25 <uses-sdk 26 android:minSdkVersion="14" 27 android:targetSdkVersion="17" /> 28 29 <!-- This app records A/V content from camera and stores it to disk --> 30 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 31 <uses-permission android:name="android.permission.RECORD_VIDEO" /> 32 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 33 <uses-permission android:name="android.permission.CAMERA" /> 34 <uses-feature android:name="android.hardware.camera" /> 35 36 <application 37 android:allowBackup="true" 38 android:icon="@drawable/ic_launcher" 39 android:label="@string/app_name" 40 android:theme="@style/AppTheme"> 41 <!-- Since this sample records video from camera preview, locking the orientation to 42 landscape. Landscape mode offers us more preview space with standard video aspect 43 ratios (width > height) --> 44 <activity 45 android:name=".MainActivity" 46 android:label="@string/app_name" 47 android:screenOrientation="landscape"> 48 <intent-filter> 49 <action android:name="android.intent.action.MAIN" /> 50 51 <category android:name="android.intent.category.LAUNCHER" /> 52 </intent-filter> 53 </activity> 54 </application> 55 56 </manifest> 57