aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-20 15:50:08 -0700
committerAllan Wang <me@allanwang.ca>2017-06-20 15:50:08 -0700
commite916afddb89550d7f99f17e1477ad17f3bd770f9 (patch)
treeb9a846da082599295d2671d29eaee74d9310f4c6 /app/src/main/AndroidManifest.xml
parent2d7fa0f6d0c152bb9f3fd30370ef510a0d452d00 (diff)
downloadfrost-e916afddb89550d7f99f17e1477ad17f3bd770f9.tar.gz
frost-e916afddb89550d7f99f17e1477ad17f3bd770f9.tar.bz2
frost-e916afddb89550d7f99f17e1477ad17f3bd770f9.zip
Add user switching for notifications
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml12
1 files changed, 5 insertions, 7 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index e715dc54..67366d71 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -10,7 +10,6 @@
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
- <uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:name=".FrostApp"
@@ -20,10 +19,10 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
- android:theme="@style/FrostThemeBase">
+ android:theme="@style/FrostTheme.Splash">
<activity
android:name=".StartActivity"
- android:configChanges="orientation|screenSize|locale"
+ android:noHistory="true"
android:label="@string/app_name"
android:theme="@style/FrostTheme.Splash">
<intent-filter>
@@ -47,16 +46,15 @@
android:name=".FrostWebActivity"
android:autoRemoveFromRecents="true"
android:exported="true"
- android:label="@string/frost_web"
android:hardwareAccelerated="true"
+ android:label="@string/frost_web"
android:launchMode="singleInstance"
android:taskAffinity="com.pitchedapps.frost.single.web"
android:theme="@style/FrostTheme.Overlay">
- <intent-filter android:autoVerify="true"
+ <intent-filter
+ android:autoVerify="true"
tools:ignore="UnusedAttribute">
- <action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
-
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />