blob: 67f7b7d3f563b20a6d451f623b4314c0fb19a5ee [file] [log] [blame]
bigrushdogfe493fc2018-11-19 15:59:07 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2016, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20<manifest
21 xmlns:android="http://schemas.android.com/apk/res/android"
22 package="com.android.settings">
23
24 <uses-permission android:name="android.permission.NAVIGATION_EDITOR" />
25
26 <application>
27 <!-- Global navbar settings -->
28 <activity android:name="Settings$NavigationSettingsActivity"
29 android:label="@string/bottom_nav_navigation_title"
30 android:excludeFromRecents="true">
31 <intent-filter>
32 <action android:name="android.intent.action.MAIN" />
33 <category android:name="android.intent.category.DEFAULT" />
34 </intent-filter>
35 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
36 android:value="com.android.settings.smartnav.NavigationBarSettings" />
37 </activity>
38
39 <!-- Smartbar settings -->
40 <activity android:name="Settings$SmartbarSettingsActivity"
41 android:label="@string/smartbar_settings_title"
42 android:excludeFromRecents="true">
43 <intent-filter>
44 <action android:name="android.intent.action.MAIN" />
45 <category android:name="android.intent.category.DEFAULT" />
46 </intent-filter>
47 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
48 android:value="com.android.settings.smartnav.SmartbarSettings" />
49 </activity>
50
51 <!-- Fling settings -->
52 <activity android:name="Settings$FlingSettingsActivity"
53 android:label="@string/fling_settings"
54 android:excludeFromRecents="true">
55 <intent-filter>
56 <action android:name="android.intent.action.MAIN" />
57 <category android:name="android.intent.category.DEFAULT" />
58 </intent-filter>
59 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
60 android:value="com.android.settings.smartnav.FlingSettings" />
61 </activity>
62
63 <!-- Pulse settings -->
64 <activity android:name="Settings$PulseSettingsActivity"
65 android:label="@string/pulse_settings"
66 android:excludeFromRecents="true">
67 <intent-filter>
68 <action android:name="android.intent.action.MAIN" />
69 <category android:name="android.intent.category.DEFAULT" />
70 </intent-filter>
71 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
72 android:value="com.android.settings.smartnav.PulseSettings" />
73 </activity>
74
75 <!-- System action picker -->
76 <activity android:name="com.android.settings.smartnav.ActionPickerDialogActivity"
77 android:theme="@style/Theme.SmartBar.Dialog"
78 android:label="@string/choose_action_title"
79 android:excludeFromRecents="true">
80 <intent-filter>
81 <action android:name="android.intent.action.MAIN" />
82 </intent-filter>
83 </activity>
84
85 <!-- Icon pack picker -->
86 <activity android:name="com.android.settings.smartnav.IconPickerActivity"
87 android:theme="@style/Theme.SmartBar.Dialog"
88 android:label="@string/icon_pack_picker_dialog_title"
89 android:excludeFromRecents="true">
90 <intent-filter>
91 <action android:name="android.intent.action.MAIN" />
92 </intent-filter>
93 </activity>
94
95 <!-- Icon picker proxy for gallery -->
96 <activity android:name="com.android.settings.smartnav.IconPickerGallery"
97 android:theme="@style/Theme.SmartBar.Dialog"
98 android:label="@string/icon_pack_picker_dialog_title"
99 android:excludeFromRecents="true">
100 <intent-filter>
101 <action android:name="android.intent.action.MAIN" />
102 </intent-filter>
103 </activity>
104
105 <!-- Icon pack grid -->
106 <activity android:name="com.android.settings.smartnav.IconPackGridActivity"
107 android:excludeFromRecents="true">
108 <intent-filter>
109 <action android:name="android.intent.action.MAIN" />
110 </intent-filter>
111 </activity>
112 </application>
113</manifest>