summaryrefslogtreecommitdiffstats
path: root/Android/05-UserInterface/UILab/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'Android/05-UserInterface/UILab/AndroidManifest.xml')
-rw-r--r--Android/05-UserInterface/UILab/AndroidManifest.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/Android/05-UserInterface/UILab/AndroidManifest.xml b/Android/05-UserInterface/UILab/AndroidManifest.xml
new file mode 100644
index 0000000..a4ea0d6
--- /dev/null
+++ b/Android/05-UserInterface/UILab/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="course.labs.todomanager"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <application
+ android:allowBackup="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name" >
+ <activity android:name="ToDoManagerActivity"
+ android:label="@string/app_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity android:name=".AddToDoActivity" >
+ </activity>
+ </application>
+</manifest>