summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVishal Mahaveer2015-09-23 14:38:43 -0500
committerVishal Mahaveer2015-09-23 15:25:05 -0500
commit8ab0975ae07bcba4bb8607bc3d7961108d11bae8 (patch)
treea9529c3eccbb08a04c3dc69b28d16d1d74625580
parent3b6a64cd02f46f4cacb96487420986ddc9f29402 (diff)
downloaddevice-ti-jacinto6evm-8ab0975ae07bcba4bb8607bc3d7961108d11bae8.tar.gz
device-ti-jacinto6evm-8ab0975ae07bcba4bb8607bc3d7961108d11bae8.tar.xz
device-ti-jacinto6evm-8ab0975ae07bcba4bb8607bc3d7961108d11bae8.zip
jacinto6evm: switch to Launcher3
Switch to Laucher3 from Launcher2 Change-Id: I2bc9c7f6aacc8de902003dec56a86eb6604b5c76 Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
-rw-r--r--device.mk3
-rw-r--r--overlay/packages/apps/Launcher3/res/xml/default_workspace_5x6.xml69
2 files changed, 72 insertions, 0 deletions
diff --git a/device.mk b/device.mk
index d01effc..d400251 100644
--- a/device.mk
+++ b/device.mk
@@ -123,6 +123,9 @@ PRODUCT_PACKAGES += \
123 libtiipcutils \ 123 libtiipcutils \
124 libtitransportrpmsg 124 libtitransportrpmsg
125 125
126# Launcher3
127PRODUCT_PACKAGES += Launcher3
128
126# Can utilities 129# Can utilities
127PRODUCT_PACKAGES += \ 130PRODUCT_PACKAGES += \
128 libcan \ 131 libcan \
diff --git a/overlay/packages/apps/Launcher3/res/xml/default_workspace_5x6.xml b/overlay/packages/apps/Launcher3/res/xml/default_workspace_5x6.xml
new file mode 100644
index 0000000..02558bd
--- /dev/null
+++ b/overlay/packages/apps/Launcher3/res/xml/default_workspace_5x6.xml
@@ -0,0 +1,69 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 Texas Instruments Inc.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<favorites xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3">
18 <!-- Far-left screen [0] -->
19
20 <!-- Left screen [1] -->
21
22 <!-- Middle screen [2] -->
23
24 <!-- Right screen [3] -->
25
26 <!-- Far-right screen [4] -->
27
28 <!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
29 <resolve
30 launcher:container="-101"
31 launcher:screen="1"
32 launcher:x="1"
33 launcher:y="0">
34 <favorite
35 launcher:packageName="com.android.music"
36 launcher:className="com.android.music.MusicBrowserActivity" />
37 </resolve>
38
39 <resolve
40 launcher:container="-101"
41 launcher:screen="2"
42 launcher:x="2"
43 launcher:y="0">
44 <favorite
45 launcher:packageName="com.android.gallery3d"
46 launcher:className="com.android.gallery3d.app.Gallery" />
47 </resolve>
48
49 <resolve
50 launcher:container="-101"
51 launcher:screen="4"
52 launcher:x="4"
53 launcher:y="0">
54 <favorite
55 launcher:packageName="com.android.settings"
56 launcher:className="com.android.settings.Settings" />
57 </resolve>
58
59 <resolve
60 launcher:container="-101"
61 launcher:screen="5"
62 launcher:x="5"
63 launcher:y="0">
64 <favorite
65 launcher:packageName="com.android.browser"
66 launcher:className="com.android.browser.BrowserActivity" />
67 </resolve>
68
69</favorites>