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 |
| 5 | * |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | */ |
| 18 | --> |
| 19 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 20 | xmlns:androidprv="http://schemas.android.com/apk/prv/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" /> |
Steve Kondik | eeeadb5 | 2016-09-07 02:21:07 -0700 | [diff] [blame] | 38 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 39 | <uses-permission android:name="lineageos.permission.MANAGE_REMOTE_PREFERENCES" /> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 40 | |
Rashed Abdel-Tawab | 3427dba | 2017-10-08 21:41:34 -0400 | [diff] [blame] | 41 | <protected-broadcast android:name="lineageos.intent.action.UPDATE_POWER_MENU" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 42 | <protected-broadcast android:name="lineageos.platform.app.profiles.PROFILES_STATE_CHANGED" /> |
| 43 | <protected-broadcast android:name="org.lineageos.lineageparts.PART_CHANGED" /> |
| 44 | <protected-broadcast android:name="org.lineageos.lineageparts.REFRESH_PART" /> |
| 45 | <protected-broadcast android:name="org.lineageos.lineageparts.gestures.UPDATE_SETTINGS" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 46 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 47 | <application android:label="@string/lineageparts_title" |
Asher Simonds | a9a4806 | 2018-02-14 16:38:10 +0200 | [diff] [blame^] | 48 | android:icon="@mipmap/ic_launcher" |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 49 | android:theme="@style/Theme.Settings" |
| 50 | android:hardwareAccelerated="true" |
| 51 | android:supportsRtl="true" |
| 52 | android:defaultToDeviceProtectedStorage="true" |
| 53 | android:directBootAware="true"> |
| 54 | |
LuK1337 | ceadf25 | 2017-06-01 12:42:54 +0200 | [diff] [blame] | 55 | <activity android:name=".PartsActivity" |
| 56 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 57 | <intent-filter> |
Steve Kondik | 974a0ff | 2016-10-08 03:53:57 -0700 | [diff] [blame] | 58 | <action android:name="android.intent.action.MAIN" /> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 59 | <category android:name="android.intent.category.DEFAULT" /> |
| 60 | </intent-filter> |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 61 | <meta-data |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 62 | android:name="org.lineageos.settings.summary.receiver" |
| 63 | android:value="org.lineageos.lineageparts.PartsUpdater" /> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 64 | </activity> |
| 65 | |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 66 | <receiver android:name=".BootReceiver" android:enabled="true"> |
Steve Kondik | 362d0d6 | 2016-09-25 23:53:46 -0700 | [diff] [blame] | 67 | <intent-filter android:priority="2147483647"> |
| 68 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 69 | </intent-filter> |
| 70 | </receiver> |
Steve Kondik | 7789bbb | 2016-09-09 03:14:20 -0700 | [diff] [blame] | 71 | |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 72 | <receiver android:name=".PartsUpdater" android:enabled="true"> |
Steve Kondik | ee8f6e8 | 2016-10-10 01:31:23 -0700 | [diff] [blame] | 73 | <intent-filter> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 74 | <action android:name="lineageos.intent.action.UPDATE_PREFERENCE" /> |
Steve Kondik | 69144e9 | 2016-10-15 01:02:13 -0700 | [diff] [blame] | 75 | <category android:name="android.intent.category.DEFAULT" /> |
Steve Kondik | ee8f6e8 | 2016-10-10 01:31:23 -0700 | [diff] [blame] | 76 | </intent-filter> |
| 77 | </receiver> |
| 78 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 79 | <provider android:name=".search.LineagePartsSearchIndexablesProvider" |
| 80 | android:authorities="org.lineageos.lineageparts" |
Steve Kondik | 165ebdf | 2016-10-07 00:17:49 -0700 | [diff] [blame] | 81 | android:multiprocess="false" |
| 82 | android:grantUriPermissions="true" |
| 83 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 84 | android:exported="true"> |
| 85 | <intent-filter> |
| 86 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" /> |
| 87 | </intent-filter> |
| 88 | </provider> |
| 89 | |
Bruno Martins | e0a02f4 | 2017-10-23 13:10:04 +0100 | [diff] [blame] | 90 | <!-- LiveDisplay settings (Display category) --> |
| 91 | <activity-alias |
| 92 | android:name=".livedisplay.LiveDisplaySettings" |
| 93 | android:label="@*lineageos.platform:string/live_display_title" |
| 94 | android:targetActivity="PartsActivity"> |
| 95 | <intent-filter android:priority="-2"> |
| 96 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Michael Bestas | 59f95ff | 2018-01-31 20:33:46 +0200 | [diff] [blame] | 97 | <action android:name="org.lineageos.lineageparts.LIVEDISPLAY_SETTINGS" /> |
Bruno Martins | e0a02f4 | 2017-10-23 13:10:04 +0100 | [diff] [blame] | 98 | <category android:name="android.intent.category.DEFAULT" /> |
| 99 | </intent-filter> |
| 100 | <meta-data |
| 101 | android:name="com.android.settings.category" |
| 102 | android:value="com.android.settings.category.ia.display" /> |
| 103 | <meta-data |
| 104 | android:name="com.android.settings.summary" |
| 105 | android:resource="@string/live_display_summary" /> |
| 106 | </activity-alias> |
| 107 | |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 108 | <!-- Privacy settings (dashboard) --> |
Sam Mortimer | f83ce0e | 2017-09-13 15:31:56 -0700 | [diff] [blame] | 109 | <!-- |
Steve Kondik | ee83354 | 2016-09-20 00:44:09 -0700 | [diff] [blame] | 110 | <activity-alias |
Sam Mortimer | 4f34349 | 2016-10-09 16:02:11 -0700 | [diff] [blame] | 111 | android:name=".PrivacySettings" |
Steve Kondik | ee83354 | 2016-09-20 00:44:09 -0700 | [diff] [blame] | 112 | android:label="@string/privacy_settings_title" |
| 113 | android:targetActivity="PartsActivity"> |
Danny Baumann | 03fb141 | 2017-01-27 08:33:08 +0100 | [diff] [blame] | 114 | <intent-filter android:priority="3"> |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 115 | <action android:name="com.android.settings.action.EXTRA_SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 116 | <action android:name="org.lineageos.lineageparts.PRIVACY_SETTINGS" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 117 | <category android:name="android.intent.category.DEFAULT" /> |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 118 | </intent-filter> |
| 119 | <meta-data |
| 120 | android:name="com.android.settings.category" |
| 121 | android:value="com.android.settings.category.personal" /> |
| 122 | <meta-data |
| 123 | android:name="com.android.settings.icon" |
| 124 | android:resource="@drawable/ic_settings_privacy" /> |
Steve Kondik | 63d9c6d | 2016-10-11 02:34:02 -0700 | [diff] [blame] | 125 | <meta-data |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 126 | android:name="org.lineageos.settings.summary.receiver" |
| 127 | android:value="org.lineageos.lineageparts.PartsUpdater" /> |
Steve Kondik | 63d9c6d | 2016-10-11 02:34:02 -0700 | [diff] [blame] | 128 | <meta-data |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 129 | android:name="org.lineageos.settings.summary.key" |
Steve Kondik | 63d9c6d | 2016-10-11 02:34:02 -0700 | [diff] [blame] | 130 | android:value="privacy_settings" /> |
Steve Kondik | ee83354 | 2016-09-20 00:44:09 -0700 | [diff] [blame] | 131 | </activity-alias> |
Sam Mortimer | f83ce0e | 2017-09-13 15:31:56 -0700 | [diff] [blame] | 132 | --> |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 133 | |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 134 | <!-- Button settings (System category) --> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 135 | <activity-alias |
| 136 | android:name=".input.ButtonSettings" |
| 137 | android:label="@string/button_pref_title" |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 138 | android:icon="@drawable/ic_settings_buttons" |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 139 | android:targetActivity="PartsActivity"> |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 140 | <intent-filter android:priority="256"> |
| 141 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 142 | <action android:name="org.lineageos.lineageparts.BUTTON_SETTINGS" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 143 | <category android:name="android.intent.category.DEFAULT" /> |
| 144 | </intent-filter> |
| 145 | <meta-data |
| 146 | android:name="com.android.settings.category" |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 147 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 148 | <meta-data |
Simon Shields | 196aaa4 | 2017-11-24 16:38:47 +1100 | [diff] [blame] | 149 | android:name="com.android.settings.summary" |
| 150 | android:value="@string/summary_empty" /> |
Steve Kondik | 3281bd6 | 2016-09-09 23:55:11 -0700 | [diff] [blame] | 151 | </activity-alias> |
| 152 | |
Zhao Wei Liew | 2ccca73 | 2017-01-21 00:51:22 +0800 | [diff] [blame] | 153 | <activity android:name=".gestures.KeyHandler" /> |
| 154 | |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 155 | <!-- Profiles settings (System category) --> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 156 | <activity-alias |
| 157 | android:name=".profiles.ProfilesSettings" |
| 158 | android:label="@string/profiles_settings_title" |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 159 | android:icon="@drawable/ic_settings_profiles" |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 160 | android:targetActivity="PartsActivity"> |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 161 | <intent-filter android:priority="255"> |
| 162 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 163 | <action android:name="org.lineageos.lineageparts.PROFILES_SETTINGS" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 164 | <category android:name="android.intent.category.DEFAULT" /> |
| 165 | </intent-filter> |
| 166 | <meta-data |
| 167 | android:name="com.android.settings.category" |
Ethan Chen | d629eb4 | 2017-10-05 00:50:26 -0700 | [diff] [blame] | 168 | android:value="com.android.settings.category.ia.system" /> |
Steve Kondik | 03b5650 | 2016-09-10 17:17:25 -0700 | [diff] [blame] | 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" |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 178 | android:icon="@drawable/ic_settings_statusbar" |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 179 | android:targetActivity="PartsActivity"> |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 180 | <intent-filter android:priority="254"> |
| 181 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 182 | <action android:name="org.lineageos.lineageparts.STATUS_BAR_SETTINGS" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 183 | <category android:name="android.intent.category.DEFAULT" /> |
| 184 | </intent-filter> |
| 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 |
Bruno Martins | 5c82499 | 2017-10-18 19:39:45 +0100 | [diff] [blame] | 189 | android:name="com.android.settings.summary" |
| 190 | android:resource="@string/summary_empty" /> |
Steve Kondik | 50c9fe6 | 2016-09-14 01:36:48 -0700 | [diff] [blame] | 191 | </activity-alias> |
| 192 | |
Joey | 90af02f | 2018-01-20 13:54:57 +0100 | [diff] [blame] | 193 | <!-- Style settings (Display category) --> |
| 194 | <activity-alias |
| 195 | android:name=".style.StylePreferences" |
| 196 | android:label="@string/style_title" |
| 197 | android:targetActivity="PartsActivity"> |
| 198 | <intent-filter android:priority="-3"> |
| 199 | <action android:name="org.lineageos.lineageparts.action.SETTINGS" /> |
| 200 | <action android:name="org.lineageos.lineageparts.STYLE_SETTINGS" /> |
| 201 | <category android:name="android.intent.category.DEFAULT" /> |
| 202 | </intent-filter> |
| 203 | <meta-data |
| 204 | android:name="com.android.settings.category" |
| 205 | android:value="com.android.settings.category.ia.display" /> |
| 206 | <meta-data |
| 207 | android:name="com.android.settings.summary" |
| 208 | android:resource="@string/style_summary" /> |
| 209 | </activity-alias> |
| 210 | |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 211 | <!-- Anonymous Statistics --> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 212 | <receiver android:name=".lineagestats.ReportingServiceManager" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 213 | android:enabled="true" |
| 214 | android:exported="false" |
| 215 | android:label="ReportingServiceManager"> |
| 216 | <intent-filter> |
| 217 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 218 | <action android:name="org.lineageos.lineageparts.action.TRIGGER_REPORT_METRICS" /> |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 219 | </intent-filter> |
| 220 | </receiver> |
| 221 | |
| 222 | <service android:label="ReportingService" |
| 223 | android:enabled="true" |
| 224 | android:exported="false" |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 225 | android:name=".lineagestats.ReportingService"> |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 226 | </service> |
| 227 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 228 | <service android:name=".lineagestats.StatsUploadJobService" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 229 | android:permission="android.permission.BIND_JOB_SERVICE" /> |
| 230 | |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 231 | <service android:name=".lineagestats.ReportingService" |
Steve Kondik | cd4f0ee | 2016-09-26 00:23:57 -0700 | [diff] [blame] | 232 | android:label="ReportingService" |
| 233 | android:enabled="true" |
| 234 | android:exported="false" /> |
| 235 | |
Michael Bestas | e4abd6f | 2017-12-28 01:03:31 +0200 | [diff] [blame] | 236 | <!-- Weather settings --> |
Steve Kondik | 3b9691d | 2016-10-08 21:42:35 -0700 | [diff] [blame] | 237 | <activity-alias |
| 238 | android:name=".weather.WeatherServiceSettings" |
| 239 | android:label="@string/weather_settings_title" |
| 240 | android:targetActivity="PartsActivity"> |
| 241 | <intent-filter android:priority="1"> |
Sam Mortimer | 32a2abb | 2017-09-18 21:40:24 -0700 | [diff] [blame] | 242 | <action android:name="lineageos.intent.action.MANAGE_WEATHER_PROVIDER_SERVICES" /> |
Steve Kondik | 3b9691d | 2016-10-08 21:42:35 -0700 | [diff] [blame] | 243 | <category android:name="android.intent.category.DEFAULT" /> |
| 244 | </intent-filter> |
| 245 | </activity-alias> |
| 246 | |
Maxim Becker | 4677ce6 | 2017-02-09 14:07:50 +0100 | [diff] [blame] | 247 | <activity android:name=".profiles.NFCProfile"> |
| 248 | <intent-filter> |
| 249 | <action android:name="android.nfc.action.NDEF_DISCOVERED"/> |
| 250 | <category android:name="android.intent.category.DEFAULT"/> |
| 251 | <data android:mimeType="cm/profile" /> |
| 252 | </intent-filter> |
| 253 | </activity> |
| 254 | |
| 255 | <activity |
| 256 | android:name=".profiles.NFCProfileSelect" |
| 257 | android:label="@string/profile_select" |
| 258 | android:excludeFromRecents="true"/> |
| 259 | |
Michael Bestas | 03645f2 | 2014-11-13 21:22:46 +0200 | [diff] [blame] | 260 | <activity android:name=".logo.PlatLogoActivity" |
| 261 | android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen" |
| 262 | android:configChanges="orientation|keyboardHidden"> |
| 263 | <intent-filter> |
| 264 | <action android:name="android.intent.action.MAIN" /> |
| 265 | <category android:name="android.intent.category.DEFAULT" /> |
| 266 | </intent-filter> |
| 267 | </activity> |
| 268 | |
meganukebmp | 9a6ac45 | 2017-12-29 19:45:22 +0200 | [diff] [blame] | 269 | <activity android:name=".egg.octo.Ocquarium" |
| 270 | android:theme="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen" |
| 271 | android:label="@string/egg_title"> |
| 272 | <intent-filter> |
| 273 | <action android:name="org.lineageos.lineageparts.EASTER_EGG"/> |
| 274 | <category android:name="android.intent.category.DEFAULT" /> |
| 275 | <category android:name="com.android.internal.category.PLATLOGO" /> |
| 276 | </intent-filter> |
| 277 | </activity> |
| 278 | |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 279 | </application> |
| 280 | </manifest> |