diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-19 20:25:58 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-19 20:25:58 -0700 |
commit | ab61f2afd887d772426bda9d9aea829557e2e39d (patch) | |
tree | f715f9441679126bf1ace3603a7a1538ed43e092 /app/src/main/AndroidManifest.xml | |
parent | a3b5b647e2651c9768a4056852aff36074590e94 (diff) | |
download | frost-ab61f2afd887d772426bda9d9aea829557e2e39d.tar.gz frost-ab61f2afd887d772426bda9d9aea829557e2e39d.tar.bz2 frost-ab61f2afd887d772426bda9d9aea829557e2e39d.zip |
Update kau and show changelog on version change
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index b59e5041..e715dc54 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" package="com.pitchedapps.frost"> <uses-permission android:name="android.permission.INTERNET" /> @@ -38,13 +39,21 @@ android:theme="@style/FrostTheme" /> <activity android:name=".WebOverlayActivity" + android:hardwareAccelerated="true" + android:label="@string/app_name" + android:theme="@style/FrostTheme.Overlay" /> + + <activity + android:name=".FrostWebActivity" android:autoRemoveFromRecents="true" android:exported="true" + android:label="@string/frost_web" android:hardwareAccelerated="true" 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" /> |