aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-14 23:39:05 -0700
committerAllan Wang <me@allanwang.ca>2017-06-14 23:39:05 -0700
commit610c37698ab93b8d51efcaec9f721292cacfd854 (patch)
tree2bb97be0f43aa5c5d64237e61dc628938e7350b5 /app/src/main/AndroidManifest.xml
parentfbbc92e4c98a30e107fb2a63887f8b6d20bffabb (diff)
downloadfrost-610c37698ab93b8d51efcaec9f721292cacfd854.tar.gz
frost-610c37698ab93b8d51efcaec9f721292cacfd854.tar.bz2
frost-610c37698ab93b8d51efcaec9f721292cacfd854.zip
Create notification service framework
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 3d001740..fab2d2a3 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -36,7 +36,10 @@
android:configChanges="orientation|screenSize|locale"
android:hardwareAccelerated="true"
android:label="@string/app_name"
- android:theme="@style/AppTheme.NoActionBar">
+ android:theme="@style/AppTheme.NoActionBar" />
+ <activity
+ android:name=".WebOverlayActivity"
+ android:theme="@style/AppTheme.Overlay">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
@@ -88,9 +91,6 @@
</intent-filter>
</activity>
<activity
- android:name=".WebOverlayActivity"
- android:theme="@style/AppTheme.Overlay" />
- <activity
android:name=".LoginActivity"
android:theme="@style/AppTheme.NoActionBar" />
<activity
@@ -100,6 +100,10 @@
android:name=".SettingsActivity"
android:theme="@style/AppTheme.NoActionBar" />
+ <service
+ android:name=".services.NotificationService"
+ android:enabled="true"
+ android:label="@string/frost_notifications" />
<receiver
android:name=".services.NotificationReceiver"
android:enabled="true"