Skip to content

Instantly share code, notes, and snippets.

@DavidTPate
Created February 13, 2013 04:44
Show Gist options
  • Save DavidTPate/4942346 to your computer and use it in GitHub Desktop.
Save DavidTPate/4942346 to your computer and use it in GitHub Desktop.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.craftingmobile.tutorials.simplecamera"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" android:required="true"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".SimpleCamera"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@style/Theme.SimpleCamera">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment