aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-09-28 23:53:47 -0700
committerGitHub <noreply@github.com>2019-09-28 23:53:47 -0700
commitc9fec8cc993f159eb81803e8c0cd5855d2a9abd3 (patch)
treec3ae5a6890b0797110f397b99812362312c07ff6 /app/src/main/AndroidManifest.xml
parentf5ae18fc0d824dbdce5523128f9ded86bdfa6d08 (diff)
parent73e16427879908e8b46b7c9fe1e87b0df838fa78 (diff)
downloadfrost-c9fec8cc993f159eb81803e8c0cd5855d2a9abd3.tar.gz
frost-c9fec8cc993f159eb81803e8c0cd5855d2a9abd3.tar.bz2
frost-c9fec8cc993f159eb81803e8c0cd5855d2a9abd3.zip
Merge pull request #1559 from AllanWang/desktop-url-convert
Convert desktop urls to mobile ones
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml19
1 files changed, 14 insertions, 5 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index d30b5177..34ce0f49 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -60,6 +60,20 @@
android:launchMode="singleTop"
android:theme="@style/FrostTheme.Overlay.Slide" />
<activity
+ android:name=".activities.WebOverlayDesktopActivity"
+ android:configChanges="orientation|screenSize|locale"
+ android:hardwareAccelerated="true"
+ android:label="@string/frost_web"
+ android:launchMode="singleTop"
+ android:theme="@style/FrostTheme.Overlay.Slide" />
+ <activity
+ android:name=".activities.WebOverlayMobileActivity"
+ android:configChanges="orientation|screenSize|locale"
+ android:hardwareAccelerated="true"
+ android:label="@string/frost_web"
+ android:launchMode="singleTop"
+ android:theme="@style/FrostTheme.Overlay.Slide" />
+ <activity
android:name=".activities.FrostWebActivity"
android:autoRemoveFromRecents="true"
android:configChanges="orientation|screenSize|locale"
@@ -149,11 +163,6 @@
android:label="@string/frost_notifications"
android:permission="android.permission.BIND_JOB_SERVICE" />
<service
- android:name=".services.FrostRequestService"
- android:enabled="true"
- android:label="@string/frost_requests"
- android:permission="android.permission.BIND_JOB_SERVICE" />
- <service
android:name=".services.LocalService"
android:enabled="true"
android:label="@string/local_service_name"