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