Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <manifest
- package="com.Bespoke.AndroidBasics"
- android:versionCode="1"
- android:versionName="1.0"
- android:installLocation="preferExternal" xmlns:android="http://schemas.android.com/apk/res/android">
- <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
- <uses-permission android:name="android.permission.WAKE_LOCK"/>
- <application
- android:icon="@drawable/ic_launcher"
- android:label="Android Basics">
- <activity
- android:name=".AndroidBasicsStarter"
- android:label="Android Basics"
- android:screenOrientation="unspecified">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name=".LifeCycleTest"
- android:label="Life Cycle Test"
- android:configChanges="keyboard|keyboardHidden|orientation" android:screenOrientation="unspecified"/>
- <activity
- android:name=".SingleTouchTest"
- android:label="Single Touch Test"
- android:configChanges="keyboard|keyboardHidden|orientation" android:screenOrientation="unspecified"/>
- <activity
- android:name=".MultiTouchTest"
- android:label="Single Touch Test"
- android:configChanges="keyboard|keyboardHidden|orientation" android:screenOrientation="unspecified"/>
- <activity
- android:name=".KeyTest"
- android:label="Key Test" android:screenOrientation="unspecified"/>
- </application>
- </manifest>
Advertisement
Add Comment
Please, Sign In to add comment