blob: 67f7b7d3f563b20a6d451f623b4314c0fb19a5ee [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2016, 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.settings">
<uses-permission android:name="android.permission.NAVIGATION_EDITOR" />
<application>
<!-- Global navbar settings -->
<activity android:name="Settings$NavigationSettingsActivity"
android:label="@string/bottom_nav_navigation_title"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"
android:value="com.android.settings.smartnav.NavigationBarSettings" />
</activity>
<!-- Smartbar settings -->
<activity android:name="Settings$SmartbarSettingsActivity"
android:label="@string/smartbar_settings_title"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"
android:value="com.android.settings.smartnav.SmartbarSettings" />
</activity>
<!-- Fling settings -->
<activity android:name="Settings$FlingSettingsActivity"
android:label="@string/fling_settings"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"
android:value="com.android.settings.smartnav.FlingSettings" />
</activity>
<!-- Pulse settings -->
<activity android:name="Settings$PulseSettingsActivity"
android:label="@string/pulse_settings"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"
android:value="com.android.settings.smartnav.PulseSettings" />
</activity>
<!-- System action picker -->
<activity android:name="com.android.settings.smartnav.ActionPickerDialogActivity"
android:theme="@style/Theme.SmartBar.Dialog"
android:label="@string/choose_action_title"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<!-- Icon pack picker -->
<activity android:name="com.android.settings.smartnav.IconPickerActivity"
android:theme="@style/Theme.SmartBar.Dialog"
android:label="@string/icon_pack_picker_dialog_title"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<!-- Icon picker proxy for gallery -->
<activity android:name="com.android.settings.smartnav.IconPickerGallery"
android:theme="@style/Theme.SmartBar.Dialog"
android:label="@string/icon_pack_picker_dialog_title"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<!-- Icon pack grid -->
<activity android:name="com.android.settings.smartnav.IconPackGridActivity"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>