summaryrefslogtreecommitdiffstats
path: root/quickstep/AndroidManifest.xml
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2017-10-30 10:03:34 -0700
committerSunny Goyal <sunnygoyal@google.com>2017-10-30 10:04:24 -0700
commit9d341964a0527391daa07dc112c5579b55edbb96 (patch)
treead3645215e44178268b31decc30763b94924365e /quickstep/AndroidManifest.xml
parent4d49f9a8ac86ccaf5f6f3d80dd8694310b620364 (diff)
downloadandroid_packages_apps_Trebuchet-9d341964a0527391daa07dc112c5579b55edbb96.tar.gz
android_packages_apps_Trebuchet-9d341964a0527391daa07dc112c5579b55edbb96.tar.bz2
android_packages_apps_Trebuchet-9d341964a0527391daa07dc112c5579b55edbb96.zip
Setting up build rules and placeholder code for QuickStep
Change-Id: Ib4ad5c6082b293fc9f9455d70e2b21462b4ab76d
Diffstat (limited to 'quickstep/AndroidManifest.xml')
-rw-r--r--quickstep/AndroidManifest.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/quickstep/AndroidManifest.xml b/quickstep/AndroidManifest.xml
new file mode 100644
index 000000000..eb05864a0
--- /dev/null
+++ b/quickstep/AndroidManifest.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+**
+** Copyright 2017, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+<manifest
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.launcher3" >
+
+ <uses-sdk android:targetSdkVersion="23" android:minSdkVersion="21"/>
+
+ <application
+ android:backupAgent="com.android.launcher3.LauncherBackupAgent"
+ android:fullBackupOnly="true"
+ android:fullBackupContent="@xml/backupscheme"
+ android:hardwareAccelerated="true"
+ android:icon="@drawable/ic_launcher_home"
+ android:label="@string/derived_app_name"
+ android:theme="@style/LauncherTheme"
+ android:largeHeap="@bool/config_largeHeap"
+ android:restoreAnyVersion="true"
+ android:supportsRtl="true" >
+
+ <service android:name="com.android.quickstep.TouchInteractionService"
+ android:exported="false" />
+
+ </application>
+
+</manifest>