| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright (C) 2015-2016 The CyanogenMod Project |
| 2017 The LineageOS Project |
| |
| SPDX-License-Identifier: Apache-2.0 |
| --> |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="org.lineageos.settings.doze" |
| android:versionCode="1" |
| android:versionName="1.0" |
| android:sharedUserId="android.uid.system"> |
| |
| <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| |
| <protected-broadcast android:name="com.android.systemui.doze.pulse" /> |
| |
| <application |
| android:label="@string/device_settings_app_name" |
| android:persistent="true"> |
| |
| <receiver android:name=".BootCompletedReceiver" |
| android:exported="false"> |
| <intent-filter> |
| <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </receiver> |
| |
| <service android:name=".DozeService" |
| android:permission="OneplusDozeService" |
| android:exported="true"> |
| </service> |
| |
| <activity |
| android:name=".DozeSettingsActivity" |
| android:exported="false" |
| android:label="@string/ambient_display_title" |
| android:theme="@style/Theme.SubSettingsBase"> |
| <intent-filter> |
| <action android:name="com.android.settings.action.IA_SETTINGS" /> |
| </intent-filter> |
| <meta-data android:name="com.android.settings.category" |
| android:value="com.android.settings.category.ia.display" /> |
| </activity> |
| |
| </application> |
| </manifest> |