micky387 | 2c66237 | 2021-04-10 05:27:21 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
| 3 | <!-- |
| 4 | Copyright (C) 2017 The OmniROM Project |
| 5 | |
| 6 | This program is free software: you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation, either version 2 of the License, or |
| 9 | (at your option) any later version. |
| 10 | |
| 11 | This program is distributed in the hope that it will be useful, |
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | GNU General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | --> |
| 19 | |
| 20 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 21 | package="org.omnirom.omnidisplaymanager" |
| 22 | android:versionCode="1" |
| 23 | android:versionName="1.0" |
| 24 | android:sharedUserId="android.uid.system" > |
| 25 | |
| 26 | <uses-sdk |
| 27 | android:minSdkVersion="28" |
| 28 | android:targetSdkVersion="28" /> |
| 29 | |
| 30 | <uses-permission android:name="android.permission.HARDWARE_TEST" /> |
| 31 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 32 | |
| 33 | <application |
| 34 | android:label="@string/app_name" |
| 35 | android:icon="@drawable/omnirom_logo" |
| 36 | android:theme="@style/AppTheme" > |
| 37 | <activity |
| 38 | android:name="org.omnirom.omnidisplaymanager.ColorSettingsActivity" |
| 39 | android:label="@string/app_name" |
| 40 | android:launchMode="singleInstance" > |
| 41 | <intent-filter> |
| 42 | <action android:name="android.intent.action.MAIN" /> |
| 43 | <category android:name="android.intent.category.DEFAULT" /> |
| 44 | </intent-filter> |
| 45 | </activity> |
| 46 | |
| 47 | <receiver android:name="org.omnirom.omnidisplaymanager.Startup" > |
| 48 | <intent-filter android:priority="100" > |
| 49 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 50 | </intent-filter> |
| 51 | </receiver> |
| 52 | |
| 53 | <service |
| 54 | android:name=".DisplayManagerTileService" |
| 55 | android:icon="@drawable/ic_settings_displaymanager" |
| 56 | android:label="@string/display_manager_tile" |
| 57 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 58 | <intent-filter> |
| 59 | <action |
| 60 | android:name="android.service.quicksettings.action.QS_TILE"/> |
| 61 | </intent-filter> |
| 62 | </service> |
| 63 | |
| 64 | <service |
| 65 | android:name=".ReadingModeTileService" |
| 66 | android:icon="@drawable/ic_tile_reading_mode" |
| 67 | android:label="@string/reading_mode_title" |
| 68 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 69 | <intent-filter> |
| 70 | <action |
| 71 | android:name="android.service.quicksettings.action.QS_TILE"/> |
| 72 | </intent-filter> |
| 73 | </service> |
| 74 | </application> |
| 75 | </manifest> |