-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAndroidManifest.xml
45 lines (36 loc) · 1.64 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.custom.ambient.display"
android:sharedUserId="android.uid.system">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
<protected-broadcast android:name="com.android.systemui.doze.pulse" />
<uses-sdk
android:targetSdkVersion="29"/>
<application
android:label="CustomDoze"
android:persistent="true"
android:supportsRtl="true">
<receiver android:name="com.custom.ambient.display.BootCompletedReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<service android:name="com.custom.ambient.display.DozeService"
android:permission="CustomDozeService">
</service>
<activity
android:name=".DozeSettings"
android:label="@string/ambient_display_title"
android:theme="@style/AppTheme">
</activity>
<activity
android:name="com.custom.ambient.display.DozeBrightness"
android:label="@string/ambient_display_title"
android:theme="@style/AppTheme"
android:autoRemoveFromRecents="true"
android:parentActivityName="com.custom.ambient.display.DozeSettings" />
</application>
</manifest>