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 |
LuK1337 | 77c1826 | 2022-05-29 21:14:00 +0200 | [diff] [blame] | 5 | * Copyright 2017-2022, 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" /> |
Ashwin R C | 5d6a8c6 | 2020-05-27 15:17:10 +0000 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.VIBRATE" /> |
Steve Kondik | eeeadb5 | 2016-09-07 02:21:07 -0700 | [diff] [blame] | 40 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 41 | <uses-permission android:name="lineageos.permission.MANAGE_REMOTE_PREFERENCES" /> |
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 | |
Dominik Baronelli | 1693611 | 2022-10-13 09:05:22 +0200 | [diff] [blame] | 49 | <application android:label="@string/shiftparts_title" |
Asher Simonds | a9a4806 | 2018-02-14 16:38:10 +0200 | [diff] [blame] | 50 | android:icon="@mipmap/ic_launcher" |
Bruno Martins | 2c9043b | 2021-12-31 16:29:07 +0000 | [diff] [blame] | 51 | android:theme="@style/Theme.SubSettingsBase" |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 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 | |
Dominik Baronelli | 7a1f5b2 | 2022-10-12 07:58:58 +0200 | [diff] [blame] | 68 | <!-- |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 69 | <activity android:name=".trust.TrustOnBoardingActivity" |
| 70 | android:label="@string/trust_title" |
| 71 | android:theme="@style/OnBoardingStyle" |
| 72 | android:exported="true" |
Luca Stefani | 5fba014 | 2018-06-10 17:12:58 +0200 | [diff] [blame] | 73 | android:enabled="true" |
| 74 | android:excludeFromRecents="true"> |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 75 | <intent-filter android:priority="-4"> |
| 76 | <action android:name="org.lineageos.lineageparts.TRUST_HINT" /> |
| 77 | <category android:name="android.intent.category.DEFAULT" /> |
| 78 | </intent-filter> |
| 79 | </activity> |
Dominik Baronelli | 7a1f5b2 | 2022-10-12 07:58:58 +0200 | [diff] [blame] | 80 | --> |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 81 | |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 82 | <receiver android:name=".BootReceiver" android:enabled="true"> |
Steve Kondik | 362d0d6 | 2016-09-25 23:53:46 -0700 | [diff] [blame] | 83 | <intent-filter android:priority="2147483647"> |
| 84 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 85 | </intent-filter> |
| 86 | </receiver> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 87 | |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 88 | <receiver android:name=".PartsUpdater" android:enabled="true"> |
Steve Kondik | ee8f6e8 | 2016-10-10 01:31:23 -0700 | [diff] [blame] | 89 | <intent-filter> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 90 | <action android:name="lineageos.intent.action.UPDATE_PREFERENCE" /> |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 91 | <category android:name="android.intent.category.DEFAULT" /> |
Steve Kondik | ee8f6e8 | 2016-10-10 01:31:23 -0700 | [diff] [blame] | 92 | </intent-filter> |
| 93 | </receiver> |
| 94 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 95 | <provider android:name=".search.LineagePartsSearchIndexablesProvider" |
| 96 | android:authorities="org.lineageos.lineageparts" |
Steve Kondik | 165ebdf | 2016-10-07 00:17:49 -0700 | [diff] [blame] | 97 | android:multiprocess="false" |
| 98 | android:grantUriPermissions="true" |
| 99 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 100 | android:exported="true"> |
| 101 | <intent-filter> |
| 102 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" /> |
| 103 | </intent-filter> |
| 104 | </provider> |
| 105 | |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 106 | <!-- Button settings (System category) --> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 107 | <activity-alias |
| 108 | android:name=".input.ButtonSettings" |
| 109 | android:label="@string/button_pref_title" |
| 110 | android:targetActivity="PartsActivity"> |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 111 | <intent-filter> |
| 112 | <action android:name="com.android.settings.action.IA_SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 113 | <action android:name="org.lineageos.lineageparts.BUTTON_SETTINGS" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 114 | <category android:name="android.intent.category.DEFAULT" /> |
| 115 | </intent-filter> |
| 116 | <meta-data |
| 117 | android:name="com.android.settings.category" |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 118 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 119 | <meta-data |
LuK1337 | 5816d9f | 2021-10-09 20:03:16 +0200 | [diff] [blame] | 120 | android:name="com.android.settings.icon" |
| 121 | android:resource="@drawable/ic_settings_buttons" /> |
| 122 | <meta-data |
| 123 | android:name="com.android.settings.icon_tintable" |
| 124 | android:value="true" /> |
| 125 | <meta-data |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 126 | android:name="com.android.settings.order" |
| 127 | android:value="-256" /> |
| 128 | <meta-data |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 129 | android:name="com.android.settings.summary" |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 130 | android:resource="@string/summary_empty" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 131 | </activity-alias> |
| 132 | |
Zhao Wei Liew | 2ccca73 | 2017-01-21 00:51:22 +0800 | [diff] [blame] | 133 | <activity android:name=".gestures.KeyHandler" /> |
| 134 | |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 135 | <!-- Profiles settings (System category) --> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 136 | <activity-alias |
| 137 | android:name=".profiles.ProfilesSettings" |
| 138 | android:label="@string/profiles_settings_title" |
| 139 | android:targetActivity="PartsActivity"> |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 140 | <intent-filter> |
| 141 | <action android:name="com.android.settings.action.IA_SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 142 | <action android:name="org.lineageos.lineageparts.PROFILES_SETTINGS" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 143 | <category android:name="android.intent.category.DEFAULT" /> |
| 144 | </intent-filter> |
| 145 | <meta-data |
| 146 | android:name="com.android.settings.category" |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 147 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 148 | <meta-data |
LuK1337 | 5816d9f | 2021-10-09 20:03:16 +0200 | [diff] [blame] | 149 | android:name="com.android.settings.icon" |
| 150 | android:resource="@drawable/ic_settings_profiles" /> |
| 151 | <meta-data |
| 152 | android:name="com.android.settings.icon_tintable" |
| 153 | android:value="true" /> |
| 154 | <meta-data |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 155 | android:name="com.android.settings.order" |
| 156 | android:value="-255" /> |
| 157 | <meta-data |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 158 | android:name="com.android.settings.summary" |
| 159 | android:resource="@string/summary_empty" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 160 | </activity-alias> |
| 161 | |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 162 | <!-- Status bar settings (System category) --> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 163 | <activity-alias |
| 164 | android:name=".statusbar.StatusBarSettings" |
| 165 | android:label="@string/status_bar_title" |
| 166 | android:targetActivity="PartsActivity"> |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 167 | <intent-filter> |
| 168 | <action android:name="com.android.settings.action.IA_SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 169 | <action android:name="org.lineageos.lineageparts.STATUS_BAR_SETTINGS" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 170 | <category android:name="android.intent.category.DEFAULT" /> |
| 171 | </intent-filter> |
| 172 | <meta-data |
| 173 | android:name="com.android.settings.category" |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 174 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 175 | <meta-data |
LuK1337 | 5816d9f | 2021-10-09 20:03:16 +0200 | [diff] [blame] | 176 | android:name="com.android.settings.icon" |
| 177 | android:resource="@drawable/ic_settings_statusbar" /> |
| 178 | <meta-data |
| 179 | android:name="com.android.settings.icon_tintable" |
| 180 | android:value="true" /> |
| 181 | <meta-data |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 182 | android:name="com.android.settings.order" |
| 183 | android:value="-254" /> |
| 184 | <meta-data |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 185 | android:name="com.android.settings.summary" |
| 186 | android:resource="@string/summary_empty" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 187 | </activity-alias> |
| 188 | |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 189 | <!-- Trust interface (Privacy category) --> |
Dominik Baronelli | 7a1f5b2 | 2022-10-12 07:58:58 +0200 | [diff] [blame] | 190 | <!-- |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 191 | <activity-alias |
| 192 | android:name=".trust.TrustPreferences" |
| 193 | android:label="@string/trust_title" |
| 194 | android:targetActivity="PartsActivity"> |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 195 | <intent-filter> |
| 196 | <action android:name="com.android.settings.action.IA_SETTINGS" /> |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 197 | <action android:name="org.lineageos.lineageparts.TRUST_INTERFACE" /> |
| 198 | <category android:name="android.intent.category.DEFAULT" /> |
| 199 | </intent-filter> |
Paul Keith | cbddb5c | 2019-09-07 16:24:38 -0500 | [diff] [blame] | 200 | <meta-data |
| 201 | android:name="com.android.settings.category" |
| 202 | android:value="com.android.settings.category.ia.privacy" /> |
| 203 | <meta-data |
| 204 | android:name="com.android.settings.order" |
| 205 | android:value="0" /> |
| 206 | <meta-data |
| 207 | android:name="com.android.settings.summary" |
| 208 | android:resource="@string/summary_empty" /> |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 209 | </activity-alias> |
Dominik Baronelli | 7a1f5b2 | 2022-10-12 07:58:58 +0200 | [diff] [blame] | 210 | --> |
Joey | 8d100d3 | 2018-04-07 14:12:34 +0200 | [diff] [blame] | 211 | |
Bruno Martins | cf2f02e | 2019-09-12 14:00:37 +0100 | [diff] [blame] | 212 | <!-- Contributors Cloud (MyDeviceInfo category) --> |
Dominik Baronelli | 4aed479 | 2022-10-14 11:56:48 +0200 | [diff] [blame] | 213 | <!-- |
Bruno Martins | cf2f02e | 2019-09-12 14:00:37 +0100 | [diff] [blame] | 214 | <activity-alias |
| 215 | android:name=".contributors.ContributorsCloudFragment" |
| 216 | android:label="@string/contributors_cloud_fragment_title" |
| 217 | android:targetActivity="PartsActivity"> |
| 218 | <intent-filter> |
| 219 | <action android:name="com.android.settings.action.IA_SETTINGS" /> |
| 220 | <action android:name="org.lineageos.lineageparts.CONTRIBUTORS_CLOUD" /> |
| 221 | <category android:name="android.intent.category.DEFAULT" /> |
| 222 | </intent-filter> |
| 223 | <meta-data |
| 224 | android:name="com.android.settings.category" |
| 225 | android:value="com.android.settings.category.ia.my_device_info" /> |
| 226 | <meta-data |
| 227 | android:name="com.android.settings.order" |
Bruno Martins | 2c9043b | 2021-12-31 16:29:07 +0000 | [diff] [blame] | 228 | android:value="2" /> |
Bruno Martins | cf2f02e | 2019-09-12 14:00:37 +0100 | [diff] [blame] | 229 | <meta-data |
| 230 | android:name="com.android.settings.summary" |
| 231 | android:resource="@string/summary_empty" /> |
| 232 | </activity-alias> |
Dominik Baronelli | 4aed479 | 2022-10-14 11:56:48 +0200 | [diff] [blame] | 233 | --> |
Bruno Martins | cf2f02e | 2019-09-12 14:00:37 +0100 | [diff] [blame] | 234 | |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 235 | <!-- Anonymous Statistics --> |
Dominik Baronelli | b4458b3 | 2022-10-11 13:33:08 +0200 | [diff] [blame] | 236 | <!-- |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 237 | <receiver android:name=".lineagestats.ReportingServiceManager" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 238 | android:enabled="true" |
| 239 | android:exported="false" |
| 240 | android:label="ReportingServiceManager"> |
| 241 | <intent-filter> |
| 242 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 243 | <action android:name="org.lineageos.lineageparts.action.TRIGGER_REPORT_METRICS" /> |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 244 | </intent-filter> |
| 245 | </receiver> |
| 246 | |
| 247 | <service android:label="ReportingService" |
| 248 | android:enabled="true" |
| 249 | android:exported="false" |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 250 | android:name=".lineagestats.ReportingService"> |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 251 | </service> |
| 252 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 253 | <service android:name=".lineagestats.StatsUploadJobService" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 254 | android:permission="android.permission.BIND_JOB_SERVICE" /> |
| 255 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 256 | <service android:name=".lineagestats.ReportingService" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 257 | android:label="ReportingService" |
| 258 | android:enabled="true" |
| 259 | android:exported="false" /> |
Dominik Baronelli | b4458b3 | 2022-10-11 13:33:08 +0200 | [diff] [blame] | 260 | --> |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 261 | |
Maxim Becker | 4677ce6 | 2017-02-09 14:07:50 +0100 | [diff] [blame] | 262 | <activity android:name=".profiles.NFCProfile"> |
| 263 | <intent-filter> |
| 264 | <action android:name="android.nfc.action.NDEF_DISCOVERED"/> |
| 265 | <category android:name="android.intent.category.DEFAULT"/> |
Bruno Martins | 84b8a8e | 2018-02-22 12:22:05 +0000 | [diff] [blame] | 266 | <data android:mimeType="lineage/profile" /> |
Maxim Becker | 4677ce6 | 2017-02-09 14:07:50 +0100 | [diff] [blame] | 267 | </intent-filter> |
| 268 | </activity> |
| 269 | |
| 270 | <activity |
| 271 | android:name=".profiles.NFCProfileSelect" |
| 272 | android:label="@string/profile_select" |
| 273 | android:excludeFromRecents="true"/> |
| 274 | |
Michael Bestas | 03645f2 | 2014-11-13 21:22:46 +0200 | [diff] [blame] | 275 | <activity android:name=".logo.PlatLogoActivity" |
LuK1337 | 77c1826 | 2022-05-29 21:14:00 +0200 | [diff] [blame] | 276 | android:theme="@style/EggStyle" |
Michael Bestas | 03645f2 | 2014-11-13 21:22:46 +0200 | [diff] [blame] | 277 | android:configChanges="orientation|keyboardHidden"> |
| 278 | <intent-filter> |
| 279 | <action android:name="android.intent.action.MAIN" /> |
| 280 | <category android:name="android.intent.category.DEFAULT" /> |
| 281 | </intent-filter> |
| 282 | </activity> |
| 283 | |
meganukebmp | 9a6ac45 | 2017-12-29 19:45:22 +0200 | [diff] [blame] | 284 | <activity android:name=".egg.octo.Ocquarium" |
LuK1337 | 77c1826 | 2022-05-29 21:14:00 +0200 | [diff] [blame] | 285 | android:theme="@style/EggStyle" |
meganukebmp | 9a6ac45 | 2017-12-29 19:45:22 +0200 | [diff] [blame] | 286 | android:label="@string/egg_title"> |
| 287 | <intent-filter> |
| 288 | <action android:name="org.lineageos.lineageparts.EASTER_EGG"/> |
| 289 | <category android:name="android.intent.category.DEFAULT" /> |
| 290 | <category android:name="com.android.internal.category.PLATLOGO" /> |
| 291 | </intent-filter> |
| 292 | </activity> |
| 293 | |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 294 | </application> |
| 295 | </manifest> |