blob: efbaa3dce34327125b257b57ff46379851433fba [file] [log] [blame]
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.camera"
android:sharedUserId="android.media">
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_SMS" />
<application android:icon="@drawable/ic_launcher_camera"
android:label="@string/camera_label"
android:taskAffinity="">
<service android:name="UploadService" android:process="android.process.media" />
<receiver android:name="CameraButtonIntentReceiver">
<intent-filter>
<action android:name="android.intent.action.CAMERA_BUTTON"/>
</intent-filter>
</receiver>
<activity android:name="Camera"
android:configChanges="orientation|keyboardHidden"
android:theme="@style/CustomTheme"
android:screenOrientation="landscape"
android:clearTaskOnLaunch="true"
android:taskAffinity="android.task.camera">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.media.action.IMAGE_CAPTURE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.media.action.STILL_IMAGE_CAMERA" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="VideoCamera"
android:label="@string/video_camera_label"
android:configChanges="orientation|keyboardHidden"
android:icon="@drawable/ic_launcher_video_camera"
android:theme="@style/CustomTheme"
android:screenOrientation="landscape"
android:clearTaskOnLaunch="true"
android:taskAffinity="android.task.camcorder">
<intent-filter>
<action android:name="android.media.action.VIDEO_CAMERA" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.media.action.VIDEO_CAPTURE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="GalleryPicker" android:label="@string/gallery_picker_label"
android:configChanges="orientation|keyboardHidden"
android:icon="@drawable/ic_launcher_gallery"
android:clearTaskOnLaunch="true"
android:taskAffinity="android.task.pictures">
</activity>
<activity android:name="ImageGallery" android:label="@string/gallery_label"
android:configChanges="orientation|keyboardHidden"
android:icon="@drawable/ic_launcher_gallery">
</activity>
<activity android:name="CropImage"
android:process=":CropImage"
android:configChanges="orientation|keyboardHidden"
android:label="@string/crop_label">
</activity>
<activity android:name="ReviewImage"
android:label="@string/view_label"
android:theme="@style/CustomTheme"
android:screenOrientation="behind"
android:configChanges="orientation|keyboardHidden"
android:exported="true">
</activity>
<activity android:name="ViewImage"
android:label="@string/view_label"
android:screenOrientation="behind"
android:configChanges="orientation|keyboardHidden">
</activity>
<activity android:name="MovieView"
android:label="@string/movieviewlabel"
android:screenOrientation="landscape"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
</activity>
<activity android:name=".DeleteImage"
android:label="@string/delete_images_message"
android:theme="@style/Theme.DeleteImageDialog">
</activity>
<activity android:name="GallerySettings" android:label="@string/preferences_label">
</activity>
<activity android:name=".Wallpaper"
android:label="@string/camera_setas_wallpaper"
android:icon="@drawable/ic_launcher_gallery">
</activity>
<activity android:name=".PickWallpaper"
android:label="@string/camera_pick_wallpaper"
android:icon="@drawable/ic_launcher_gallery">
</activity>
<!-- We configure a widget by asking to pick a photo, then crop it, and store the config internally -->
<activity android:name="PhotoAppWidgetConfigure">
</activity>
<!-- We also allow direct binding where the caller provides a bitmap and
appWidgetId to bind. We require the permission because this changes our
internal database without user confirmation. -->
<activity android:name="PhotoAppWidgetBind" android:exported="true"
android:theme="@android:style/Theme.NoDisplay"
android:permission="android.permission.BIND_APPWIDGET" />
</application>
</manifest>