Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /** |
| 4 | * Copyright 2016, The CyanogenMod Project |
Bruno Martins | 84b8a8e | 2018-02-22 12:22:05 +0000 | [diff] [blame] | 5 | * Copyright 2017-2018, The LineageOS Project |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 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 xmlns:android="http://schemas.android.com/apk/res/android" |
| 21 | xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 22 | package="org.lineageos.lineageparts" |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 23 | android:versionCode="1" |
| 24 | android:versionName="1.0" |
| 25 | android:sharedUserId="android.uid.system"> |
| 26 | |
| 27 | <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="24" /> |
| 28 | |
Steve Kondik | eeeadb5 | 2016-09-07 02:21:07 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" /> |
| 30 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 31 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 32 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 33 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 34 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
| 35 | <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.BIND_DEVICE_ADMIN" /> |
Steve Kondik | 362d0d6 | 2016-09-25 23:53:46 -0700 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
Steve Kondik | 165ebdf | 2016-10-07 00:17:49 -0700 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.READ_SEARCH_INDEXABLES" /> |
Steve Kondik | eeeadb5 | 2016-09-07 02:21:07 -0700 | [diff] [blame] | 39 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 40 | <uses-permission android:name="lineageos.permission.MANAGE_REMOTE_PREFERENCES" /> |
Joey | 5eb68bd | 2018-02-22 16:52:47 +0100 | [diff] [blame] | 41 | <uses-permission android:name="lineageos.permission.CHANGE_STYLE" /> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 42 | |
Rashed Abdel-Tawab | 3427dba | 2017-10-08 21:41:34 -0400 | [diff] [blame] | 43 | <protected-broadcast android:name="lineageos.intent.action.UPDATE_POWER_MENU" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 44 | <protected-broadcast android:name="lineageos.platform.app.profiles.PROFILES_STATE_CHANGED" /> |
| 45 | <protected-broadcast android:name="org.lineageos.lineageparts.PART_CHANGED" /> |
| 46 | <protected-broadcast android:name="org.lineageos.lineageparts.REFRESH_PART" /> |
| 47 | <protected-broadcast android:name="org.lineageos.lineageparts.gestures.UPDATE_SETTINGS" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 48 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 49 | <application android:label="@string/lineageparts_title" |
Asher Simonds | a9a4806 | 2018-02-14 16:38:10 +0200 | [diff] [blame] | 50 | android:icon="@mipmap/ic_launcher" |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 51 | android:theme="@style/Theme.Settings" |
| 52 | android:hardwareAccelerated="true" |
| 53 | android:supportsRtl="true" |
| 54 | android:defaultToDeviceProtectedStorage="true" |
| 55 | android:directBootAware="true"> |
| 56 | |
LuK1337 | ceadf25 | 2017-06-01 12:42:54 +0200 | [diff] [blame] | 57 | <activity android:name=".PartsActivity" |
| 58 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 59 | <intent-filter> |
Steve Kondik | 974a0ff | 2016-10-08 03:53:57 -0700 | [diff] [blame] | 60 | <action android:name="android.intent.action.MAIN" /> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 61 | <category android:name="android.intent.category.DEFAULT" /> |
| 62 | </intent-filter> |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 63 | <meta-data |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 64 | android:name="org.lineageos.settings.summary.receiver" |
| 65 | android:value="org.lineageos.lineageparts.PartsUpdater" /> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 66 | </activity> |
| 67 | |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 68 | <activity android:name=".trust.TrustOnBoardingActivity" |
| 69 | android:label="@string/trust_title" |
| 70 | android:theme="@style/OnBoardingStyle" |
| 71 | android:exported="true" |
Luca Stefani | 5fba014 | 2018-06-10 17:12:58 +0200 | [diff] [blame^] | 72 | android:enabled="true" |
| 73 | android:excludeFromRecents="true"> |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 74 | <intent-filter android:priority="-4"> |
| 75 | <action android:name="org.lineageos.lineageparts.TRUST_HINT" /> |
| 76 | <category android:name="android.intent.category.DEFAULT" /> |
| 77 | </intent-filter> |
| 78 | </activity> |
| 79 | |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 80 | <receiver android:name=".BootReceiver" android:enabled="true"> |
Steve Kondik | 362d0d6 | 2016-09-25 23:53:46 -0700 | [diff] [blame] | 81 | <intent-filter android:priority="2147483647"> |
| 82 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 83 | </intent-filter> |
| 84 | </receiver> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 85 | |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 86 | <receiver android:name=".PartsUpdater" android:enabled="true"> |
Steve Kondik | ee8f6e8 | 2016-10-10 01:31:23 -0700 | [diff] [blame] | 87 | <intent-filter> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 88 | <action android:name="lineageos.intent.action.UPDATE_PREFERENCE" /> |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 89 | <category android:name="android.intent.category.DEFAULT" /> |
Steve Kondik | ee8f6e8 | 2016-10-10 01:31:23 -0700 | [diff] [blame] | 90 | </intent-filter> |
| 91 | </receiver> |
| 92 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 93 | <provider android:name=".search.LineagePartsSearchIndexablesProvider" |
| 94 | android:authorities="org.lineageos.lineageparts" |
Steve Kondik | 165ebdf | 2016-10-07 00:17:49 -0700 | [diff] [blame] | 95 | android:multiprocess="false" |
| 96 | android:grantUriPermissions="true" |
| 97 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 98 | android:exported="true"> |
| 99 | <intent-filter> |
| 100 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" /> |
| 101 | </intent-filter> |
| 102 | </provider> |
| 103 | |
Bruno Martins | e0a02f4 | 2017-10-23 13:10:04 +0100 | [diff] [blame] | 104 | <!-- LiveDisplay settings (Display category) --> |
| 105 | <activity-alias |
| 106 | android:name=".livedisplay.LiveDisplaySettings" |
| 107 | android:label="@*lineageos.platform:string/live_display_title" |
| 108 | android:targetActivity="PartsActivity"> |
| 109 | <intent-filter android:priority="-2"> |
| 110 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Michael Bestas | 59f95ff | 2018-01-31 20:33:46 +0200 | [diff] [blame] | 111 | <action android:name="org.lineageos.lineageparts.LIVEDISPLAY_SETTINGS" /> |
Bruno Martins | e0a02f4 | 2017-10-23 13:10:04 +0100 | [diff] [blame] | 112 | <category android:name="android.intent.category.DEFAULT" /> |
| 113 | </intent-filter> |
| 114 | <meta-data |
| 115 | android:name="com.android.settings.category" |
| 116 | android:value="com.android.settings.category.ia.display" /> |
| 117 | <meta-data |
| 118 | android:name="com.android.settings.summary" |
| 119 | android:resource="@string/live_display_summary" /> |
| 120 | </activity-alias> |
| 121 | |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 122 | <!-- Privacy settings (dashboard) --> |
Sam Mortimer | f83ce0e | 2017-09-13 15:31:56 -0700 | [diff] [blame] | 123 | <!-- |
Steve Kondik | ee83354 | 2016-09-20 00:44:09 -0700 | [diff] [blame] | 124 | <activity-alias |
Sam Mortimer | 4f34349 | 2016-10-09 16:02:11 -0700 | [diff] [blame] | 125 | android:name=".PrivacySettings" |
Steve Kondik | ee83354 | 2016-09-20 00:44:09 -0700 | [diff] [blame] | 126 | android:label="@string/privacy_settings_title" |
| 127 | android:targetActivity="PartsActivity"> |
Danny Baumann | 03fb141 | 2017-01-27 08:33:08 +0100 | [diff] [blame] | 128 | <intent-filter android:priority="3"> |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 129 | <action android:name="com.android.settings.action.EXTRA_SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 130 | <action android:name="org.lineageos.lineageparts.PRIVACY_SETTINGS" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 131 | <category android:name="android.intent.category.DEFAULT" /> |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 132 | </intent-filter> |
| 133 | <meta-data |
| 134 | android:name="com.android.settings.category" |
| 135 | android:value="com.android.settings.category.personal" /> |
| 136 | <meta-data |
| 137 | android:name="com.android.settings.icon" |
| 138 | android:resource="@drawable/ic_settings_privacy" /> |
Steve Kondik | 63d9c6d | 2016-10-11 02:34:02 -0700 | [diff] [blame] | 139 | <meta-data |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 140 | android:name="org.lineageos.settings.summary.receiver" |
| 141 | android:value="org.lineageos.lineageparts.PartsUpdater" /> |
Steve Kondik | 63d9c6d | 2016-10-11 02:34:02 -0700 | [diff] [blame] | 142 | <meta-data |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 143 | android:name="org.lineageos.settings.summary.key" |
Steve Kondik | 63d9c6d | 2016-10-11 02:34:02 -0700 | [diff] [blame] | 144 | android:value="privacy_settings" /> |
Steve Kondik | ee83354 | 2016-09-20 00:44:09 -0700 | [diff] [blame] | 145 | </activity-alias> |
Sam Mortimer | f83ce0e | 2017-09-13 15:31:56 -0700 | [diff] [blame] | 146 | --> |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 147 | |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 148 | <!-- Button settings (System category) --> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 149 | <activity-alias |
| 150 | android:name=".input.ButtonSettings" |
| 151 | android:label="@string/button_pref_title" |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 152 | android:icon="@drawable/ic_settings_buttons" |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 153 | android:targetActivity="PartsActivity"> |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 154 | <intent-filter android:priority="256"> |
| 155 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 156 | <action android:name="org.lineageos.lineageparts.BUTTON_SETTINGS" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 157 | <category android:name="android.intent.category.DEFAULT" /> |
| 158 | </intent-filter> |
| 159 | <meta-data |
| 160 | android:name="com.android.settings.category" |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 161 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 162 | <meta-data |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 163 | android:name="com.android.settings.summary" |
| 164 | android:value="@string/summary_empty" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 165 | </activity-alias> |
| 166 | |
Zhao Wei Liew | 2ccca73 | 2017-01-21 00:51:22 +0800 | [diff] [blame] | 167 | <activity android:name=".gestures.KeyHandler" /> |
| 168 | |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 169 | <!-- Profiles settings (System category) --> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 170 | <activity-alias |
| 171 | android:name=".profiles.ProfilesSettings" |
| 172 | android:label="@string/profiles_settings_title" |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 173 | android:icon="@drawable/ic_settings_profiles" |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 174 | android:targetActivity="PartsActivity"> |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 175 | <intent-filter android:priority="255"> |
| 176 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 177 | <action android:name="org.lineageos.lineageparts.PROFILES_SETTINGS" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 178 | <category android:name="android.intent.category.DEFAULT" /> |
| 179 | </intent-filter> |
| 180 | <meta-data |
| 181 | android:name="com.android.settings.category" |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 182 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 183 | <meta-data |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 184 | android:name="com.android.settings.summary" |
| 185 | android:resource="@string/summary_empty" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 186 | </activity-alias> |
| 187 | |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 188 | <!-- Status bar settings (System category) --> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 189 | <activity-alias |
| 190 | android:name=".statusbar.StatusBarSettings" |
| 191 | android:label="@string/status_bar_title" |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 192 | android:icon="@drawable/ic_settings_statusbar" |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 193 | android:targetActivity="PartsActivity"> |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 194 | <intent-filter android:priority="254"> |
| 195 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 196 | <action android:name="org.lineageos.lineageparts.STATUS_BAR_SETTINGS" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 197 | <category android:name="android.intent.category.DEFAULT" /> |
| 198 | </intent-filter> |
| 199 | <meta-data |
| 200 | android:name="com.android.settings.category" |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 201 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 202 | <meta-data |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 203 | android:name="com.android.settings.summary" |
| 204 | android:resource="@string/summary_empty" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 205 | </activity-alias> |
| 206 | |
Joey | 90af02f | 2018-01-20 13:54:57 +0100 | [diff] [blame] | 207 | <!-- Style settings (Display category) --> |
| 208 | <activity-alias |
| 209 | android:name=".style.StylePreferences" |
| 210 | android:label="@string/style_title" |
| 211 | android:targetActivity="PartsActivity"> |
| 212 | <intent-filter android:priority="-3"> |
| 213 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
| 214 | <action android:name="org.lineageos.lineageparts.STYLE_SETTINGS" /> |
| 215 | <category android:name="android.intent.category.DEFAULT" /> |
| 216 | </intent-filter> |
| 217 | <meta-data |
| 218 | android:name="com.android.settings.category" |
| 219 | android:value="com.android.settings.category.ia.display" /> |
| 220 | <meta-data |
| 221 | android:name="com.android.settings.summary" |
| 222 | android:resource="@string/style_summary" /> |
| 223 | </activity-alias> |
| 224 | |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 225 | <!-- Trust interface (Security category) --> |
| 226 | <activity-alias |
| 227 | android:name=".trust.TrustPreferences" |
| 228 | android:label="@string/trust_title" |
| 229 | android:targetActivity="PartsActivity"> |
| 230 | <intent-filter android:priority="-4"> |
| 231 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
| 232 | <action android:name="org.lineageos.lineageparts.TRUST_INTERFACE" /> |
| 233 | <category android:name="android.intent.category.DEFAULT" /> |
| 234 | </intent-filter> |
| 235 | </activity-alias> |
| 236 | |
Bruno Martins | 082ad67 | 2018-02-22 10:03:02 +0000 | [diff] [blame] | 237 | <!-- Expanded Desktop settings (Display category) --> |
| 238 | <activity-alias |
| 239 | android:name=".applications.ExpandedDesktopSettings" |
| 240 | android:label="@string/expanded_desktop_settings_title" |
| 241 | android:targetActivity="PartsActivity"> |
| 242 | <intent-filter android:priority="-9"> |
| 243 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
| 244 | <action android:name="org.lineageos.lineageparts.EXPANDED_DESKTOP_SETTINGS" /> |
| 245 | <category android:name="android.intent.category.DEFAULT" /> |
| 246 | </intent-filter> |
| 247 | <meta-data |
| 248 | android:name="com.android.settings.category" |
| 249 | android:value="com.android.settings.category.ia.display" /> |
| 250 | <meta-data |
| 251 | android:name="com.android.settings.summary" |
| 252 | android:resource="@string/expanded_desktop_settings_summary" /> |
| 253 | </activity-alias> |
| 254 | |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 255 | <!-- Anonymous Statistics --> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 256 | <receiver android:name=".lineagestats.ReportingServiceManager" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 257 | android:enabled="true" |
| 258 | android:exported="false" |
| 259 | android:label="ReportingServiceManager"> |
| 260 | <intent-filter> |
| 261 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 262 | <action android:name="org.lineageos.lineageparts.action.TRIGGER_REPORT_METRICS" /> |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 263 | </intent-filter> |
| 264 | </receiver> |
| 265 | |
| 266 | <service android:label="ReportingService" |
| 267 | android:enabled="true" |
| 268 | android:exported="false" |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 269 | android:name=".lineagestats.ReportingService"> |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 270 | </service> |
| 271 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 272 | <service android:name=".lineagestats.StatsUploadJobService" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 273 | android:permission="android.permission.BIND_JOB_SERVICE" /> |
| 274 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 275 | <service android:name=".lineagestats.ReportingService" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 276 | android:label="ReportingService" |
| 277 | android:enabled="true" |
| 278 | android:exported="false" /> |
| 279 | |
Michael Bestas | e4abd6f | 2017-12-28 01:03:31 +0200 | [diff] [blame] | 280 | <!-- Weather settings --> |
Steve Kondik | 3b9691d | 2016-10-08 21:42:35 -0700 | [diff] [blame] | 281 | <activity-alias |
| 282 | android:name=".weather.WeatherServiceSettings" |
| 283 | android:label="@string/weather_settings_title" |
| 284 | android:targetActivity="PartsActivity"> |
| 285 | <intent-filter android:priority="1"> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 286 | <action android:name="lineageos.intent.action.MANAGE_WEATHER_PROVIDER_SERVICES" /> |
Steve Kondik | 3b9691d | 2016-10-08 21:42:35 -0700 | [diff] [blame] | 287 | <category android:name="android.intent.category.DEFAULT" /> |
| 288 | </intent-filter> |
| 289 | </activity-alias> |
| 290 | |
Maxim Becker | 4677ce6 | 2017-02-09 14:07:50 +0100 | [diff] [blame] | 291 | <activity android:name=".profiles.NFCProfile"> |
| 292 | <intent-filter> |
| 293 | <action android:name="android.nfc.action.NDEF_DISCOVERED"/> |
| 294 | <category android:name="android.intent.category.DEFAULT"/> |
Bruno Martins | 84b8a8e | 2018-02-22 12:22:05 +0000 | [diff] [blame] | 295 | <data android:mimeType="lineage/profile" /> |
Maxim Becker | 4677ce6 | 2017-02-09 14:07:50 +0100 | [diff] [blame] | 296 | </intent-filter> |
| 297 | </activity> |
| 298 | |
| 299 | <activity |
| 300 | android:name=".profiles.NFCProfileSelect" |
| 301 | android:label="@string/profile_select" |
| 302 | android:excludeFromRecents="true"/> |
| 303 | |
Michael Bestas | 03645f2 | 2014-11-13 21:22:46 +0200 | [diff] [blame] | 304 | <activity android:name=".logo.PlatLogoActivity" |
| 305 | android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen" |
| 306 | android:configChanges="orientation|keyboardHidden"> |
| 307 | <intent-filter> |
| 308 | <action android:name="android.intent.action.MAIN" /> |
| 309 | <category android:name="android.intent.category.DEFAULT" /> |
| 310 | </intent-filter> |
| 311 | </activity> |
| 312 | |
meganukebmp | 9a6ac45 | 2017-12-29 19:45:22 +0200 | [diff] [blame] | 313 | <activity android:name=".egg.octo.Ocquarium" |
| 314 | android:theme="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen" |
| 315 | android:label="@string/egg_title"> |
| 316 | <intent-filter> |
| 317 | <action android:name="org.lineageos.lineageparts.EASTER_EGG"/> |
| 318 | <category android:name="android.intent.category.DEFAULT" /> |
| 319 | <category android:name="com.android.internal.category.PLATLOGO" /> |
| 320 | </intent-filter> |
| 321 | </activity> |
| 322 | |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 323 | </application> |
| 324 | </manifest> |