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