summaryrefslogtreecommitdiff
path: root/AndroidClient/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidClient/app/src/main/AndroidManifest.xml')
-rw-r--r--AndroidClient/app/src/main/AndroidManifest.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/AndroidClient/app/src/main/AndroidManifest.xml b/AndroidClient/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..a6014da
--- /dev/null
+++ b/AndroidClient/app/src/main/AndroidManifest.xml
@@ -0,0 +1,34 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="winter.snowman.notifications">
+
+ <uses-permission android:name="android.permission.INTERNET"/>
+
+ <application android:allowBackup="true"
+ android:label="@string/app_name"
+ android:icon="@drawable/ic_launcher"
+ android:theme="@style/AppTheme">
+
+ <activity android:name=".WebViewActivity"
+ android:label="@string/app_name"
+ android:screenOrientation="portrait"
+ android:configChanges="orientation|keyboardHidden" >
+
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+
+ </activity>
+
+ <service android:name=".NotifListenerService"
+ android:label="@string/app_name"
+ android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE" >
+ <intent-filter>
+ <action android:name="android.service.notification.NotificationListenerService" />
+ </intent-filter>
+
+ </service>
+
+ </application>
+
+</manifest>