annotate AndroidManifest.xml @ 1:66b3a838feca logging tip

Added logging of user interaction
author Fiore Martin <fiore@eecs.qmul.ac.uk>
date Tue, 12 Feb 2013 15:31:48 +0000
parents e0ee6ac3a45f
children
rev   line source
fiore@0 1 <?xml version="1.0" encoding="utf-8"?>
fiore@0 2 <manifest package="uk.ac.qmul.eecs.ccmi.activities"
fiore@0 3 android:versionCode="1"
fiore@0 4 android:versionName="1.0" xmlns:android="http://schemas.android.com/apk/res/android" >
fiore@0 5
fiore@0 6 <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="9"/>
fiore@0 7 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
fiore@0 8 <uses-permission android:name="android.permission.VIBRATE"/>
fiore@0 9
fiore@0 10 <application
fiore@0 11 android:icon="@drawable/ccmi_icon"
fiore@0 12 android:label="@string/app_name" >
fiore@0 13 <activity
fiore@0 14 android:name=".CcmiEditorAppActivity"
fiore@0 15 android:label="@string/app_name"
fiore@0 16 android:theme="@android:style/Theme.NoTitleBar"
fiore@0 17 android:screenOrientation="portrait" >
fiore@0 18 </activity>
fiore@0 19
fiore@0 20 <activity
fiore@0 21 android:name="uk.ac.qmul.eecs.ccmi.activities.FileSelectorActivity$Open"
fiore@0 22 android:screenOrientation="portrait"
fiore@0 23 android:theme="@android:style/Theme.NoTitleBar" >
fiore@0 24 </activity>
fiore@0 25
fiore@0 26 <activity
fiore@0 27 android:name="uk.ac.qmul.eecs.ccmi.activities.FileSelectorActivity$Save"
fiore@0 28 android:screenOrientation="portrait"
fiore@0 29 android:theme="@android:style/Theme.NoTitleBar" >
fiore@0 30 </activity>
fiore@0 31
fiore@0 32 <activity android:name=".CcmiSplashActivity" android:screenOrientation="portrait"
fiore@0 33 android:theme="@android:style/Theme.NoTitleBar">
fiore@0 34 <intent-filter>
fiore@0 35 <action android:name="android.intent.action.MAIN" />
fiore@0 36 <category android:name="android.intent.category.LAUNCHER" />
fiore@0 37 </intent-filter>
fiore@0 38 </activity>
fiore@0 39 </application>
fiore@0 40
fiore@0 41
fiore@0 42 </manifest>