summaryrefslogtreecommitdiffstats
path: root/Android/06-Notifications/Notifications/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'Android/06-Notifications/Notifications/AndroidManifest.xml')
-rw-r--r--Android/06-Notifications/Notifications/AndroidManifest.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/Android/06-Notifications/Notifications/AndroidManifest.xml b/Android/06-Notifications/Notifications/AndroidManifest.xml
new file mode 100644
index 0000000..85da77a
--- /dev/null
+++ b/Android/06-Notifications/Notifications/AndroidManifest.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="course.labs.notificationslab"
+ android:versionCode="1"
+ android:versionName="1.0">
+
+ <uses-permission android:name="android.permission.INTERNET" />
+
+ <application
+ android:allowBackup="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name="course.labs.notificationslab.MainActivity"
+ android:label="@string/app_name"
+ android:launchMode="singleTop" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name="course.labs.notificationslab.TestFrontEndActivity"
+ android:label="@string/title_activity_test_front_end" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>