Joey | c48c9ad | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2015-2016 The CyanogenMod Project |
| 4 | 2017-2021 The LineageOS 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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | package="org.lineageos.settings" |
| 20 | android:versionCode="1" |
| 21 | android:versionName="1.0" |
| 22 | android:sharedUserId="android.uid.system"> |
| 23 | |
| 24 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| 25 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 26 | |
| 27 | <protected-broadcast android:name="com.android.systemui.doze.pulse" /> |
| 28 | |
| 29 | <uses-sdk |
| 30 | android:minSdkVersion="24" |
| 31 | android:targetSdkVersion="28"/> |
| 32 | |
| 33 | <application |
| 34 | android:icon="@mipmap/ic_launcher" |
| 35 | android:label="@string/device_settings_app_name" |
| 36 | android:persistent="true" |
TheScarastic | 3afed48 | 2021-10-06 07:25:13 +0000 | [diff] [blame] | 37 | android:theme="@style/Theme.SubSettingsBase"> |
Joey | c48c9ad | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 38 | |
| 39 | <receiver android:name=".BootCompletedReceiver"> |
| 40 | <intent-filter> |
| 41 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 42 | <category android:name="android.intent.category.DEFAULT" /> |
| 43 | </intent-filter> |
| 44 | </receiver> |
| 45 | |
| 46 | <service android:name=".doze.DozeService" |
| 47 | android:permission="AxolotlDozeService"> |
| 48 | </service> |
| 49 | |
| 50 | <activity |
| 51 | android:name=".doze.DozeSettingsActivity" |
| 52 | android:label="@string/ambient_display_title"> |
| 53 | <intent-filter> |
| 54 | <action android:name="org.lineageos.settings.device.DOZE_SETTINGS" /> |
| 55 | <category android:name="android.intent.category.DEFAULT" /> |
| 56 | </intent-filter> |
| 57 | </activity> |
| 58 | |
| 59 | </application> |
| 60 | </manifest> |