-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
116 lines (105 loc) · 5.03 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
116 lines (105 loc) · 5.03 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission
android:name="android.permission.WRITE_SECURE_SETTINGS"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
<queries>
<package android:name="moe.shizuku.privileged.api" />
<package android:name="com.google.android.settings.intelligence" />
<!-- GrapheneOS identity: no property/feature/fingerprint marker exists, so detection resolves
these core OS packages (DeviceInfo.GRAPHENEOS_PACKAGES). -->
<package android:name="app.grapheneos.setupwizard" />
<package android:name="app.grapheneos.info" />
<!-- LineageOS private settings provider — needed so resolveContentProvider/query aren't
hidden by package visibility on API 30+ (the Lineage charge-control adapter reads it). -->
<provider android:authorities="lineagesettings" />
<intent>
<action android:name="android.settings.BATTERY_SAVER_SETTINGS" />
</intent>
<intent>
<action android:name="android.intent.action.POWER_USAGE_SUMMARY" />
</intent>
<intent>
<action android:name="com.samsung.android.sm.ACTION_BATTERY_PROTECTION" />
</intent>
</queries>
<application
android:name=".AmplyApp"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Amply">
<meta-data
android:name="moe.shizuku.client.V3_SUPPORT"
android:value="true" />
<provider
android:name="rikka.shizuku.ShizukuProvider"
android:authorities="${applicationId}.shizuku"
android:enabled="true"
android:exported="true"
android:multiprocess="false"
android:permission="android.permission.INTERACT_ACROSS_USERS_FULL" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.files"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<activity
android:name=".main.ui.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".fullcharge.core.ChargeSessionService"
android:exported="false"
android:foregroundServiceType="specialUse">
<property
android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
android:value="User-enabled charging monitor that restores temporary policy overrides, detects a deliberate unplug/replug gesture while a charge-protection policy is active, alerts the user to unplug when the battery reaches a user-set charge level, and, when the user turns on battery statistics, records local charge-session measurements while running" />
</service>
<service
android:name=".main.ui.tile.ChargeTileService"
android:exported="true"
android:icon="@drawable/ic_launcher_monochrome"
android:label="@string/tile_label"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
<meta-data
android:name="android.service.quicksettings.TOGGLEABLE_TILE"
android:value="true" />
</service>
<receiver
android:name=".main.ui.widget.AmplyWidgetReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/amply_widget_info" />
</receiver>
<receiver
android:name=".fullcharge.core.BootReceiver"
android:directBootAware="false"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>