Advertisement
Guest User

Untitled

a guest
Feb 7th, 2012
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.      package="com.cakemansapps.lightwriter"
  4.      android:versionCode="1"
  5.      android:versionName="1.0">
  6.     <application android:label="@string/app_name" >
  7.         <activity android:name="LightWriter"
  8.                  android:label="@string/app_name"
  9.                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
  10.             <intent-filter>
  11.                 <action android:name="android.intent.action.MAIN" />
  12.                 <category android:name="android.intent.category.LAUNCHER" />
  13.             </intent-filter>
  14.         </activity>
  15.     </application>
  16.     <uses-permission android:name="android.permission.CAMERA" />
  17.     <uses-feature android:name="android.hardware.camera" />
  18.     <uses-feature android:name="android.hardware.camera.autofocus" />
  19. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement