Guest User

AndroidManifext.xml

a guest
Jun 10th, 2012
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.79 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3.    package="com.Bespoke.AndroidBasics"
  4.    android:versionCode="1"
  5.    android:versionName="1.0"
  6.    android:installLocation="preferExternal" xmlns:android="http://schemas.android.com/apk/res/android">
  7.  
  8.     <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
  9.     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  10.     <uses-permission android:name="android.permission.WAKE_LOCK"/>
  11.  
  12.     <application
  13.        android:icon="@drawable/ic_launcher"
  14.        android:label="Android Basics">
  15.         <activity
  16.            android:name=".AndroidBasicsStarter"
  17.            android:label="Android Basics"
  18.            android:screenOrientation="unspecified">
  19.             <intent-filter>
  20.                 <action android:name="android.intent.action.MAIN" />
  21.                 <category android:name="android.intent.category.LAUNCHER" />
  22.             </intent-filter>
  23.         </activity>
  24.         <activity
  25.            android:name=".LifeCycleTest"
  26.            android:label="Life Cycle Test"
  27.            android:configChanges="keyboard|keyboardHidden|orientation" android:screenOrientation="unspecified"/>
  28.         <activity
  29.            android:name=".SingleTouchTest"
  30.            android:label="Single Touch Test"
  31.            android:configChanges="keyboard|keyboardHidden|orientation" android:screenOrientation="unspecified"/>
  32.         <activity
  33.            android:name=".MultiTouchTest"
  34.            android:label="Single Touch Test"
  35.            android:configChanges="keyboard|keyboardHidden|orientation" android:screenOrientation="unspecified"/>
  36.         <activity
  37.            android:name=".KeyTest"
  38.            android:label="Key Test" android:screenOrientation="unspecified"/>
  39.     </application>
  40.  
  41. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment