-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
82 lines (67 loc) · 3.27 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2022 Danny Lin <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.kdrag0n.dyntheme.privileged.sys"
android:versionCode="1"
android:versionName="1">
<!-- DO NOT change the version code. Clients use it to check the API version. -->
<uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES" />
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<permission
android:name="dev.kdrag0n.dyntheme.BIND_PRIVILEGED_SYSTEM_SERVICE"
android:knownCerts="@array/allowed_certs"
android:protectionLevel="signature|knownSigner" />
<queries>
<package android:name="dev.kdrag0n.dyntheme" />
<package android:name="dev.kdrag0n.dyntheme.debug" />
</queries>
<application
android:label="@string/app_name"
android:allowBackup="false"
android:supportsRtl="true"
android:directBootAware="true">
<!-- Hidden activity for app info-->
<activity android:name="dev.kdrag0n.dyntheme.service.privileged.sys.LinkTrampolineActivity"
android:theme="@android:style/Theme.DeviceDefault.DayNight"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
</activity>
<service android:name="dev.kdrag0n.dyntheme.service.privileged.sys.SystemPrivilegedService"
android:permission="dev.kdrag0n.dyntheme.BIND_PRIVILEGED_SYSTEM_SERVICE"
android:exported="true">
<intent-filter>
<action android:name="dev.kdrag0n.dyntheme.PRIVILEGED_SYSTEM_SERVICE" />
</intent-filter>
</service>
<receiver android:name="dev.kdrag0n.dyntheme.service.privileged.sys.PackageRemovedReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
<meta-data
android:name="dev.kdrag0n.dyntheme.privileged.sys.metadata_version"
android:value="@integer/config_metadata_version" />
<meta-data
android:name="dev.kdrag0n.dyntheme.privileged.sys.vendor_name"
android:value="@string/config_vendor_name" />
<meta-data
android:name="dev.kdrag0n.dyntheme.privileged.sys.boot_animation_colors"
android:resource="@array/config_boot_animation_colors" />
</application>
</manifest>