-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
133 lines (120 loc) · 6.29 KB
/
AndroidManifest.xml
File metadata and controls
133 lines (120 loc) · 6.29 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: Federico Dossena
SPDX-FileCopyrightText: The MoKee Open Source Project
SPDX-FileCopyrightText: TheParasiteProject
SPDX-License-Identifier: GPL-3.0-or-later
License-Filename: LICENSE
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.android.bluetooth.bthelper"
android:versionCode="1"
android:versionName="1.0">
<queries>
<package android:name="com.android.bluetooth.bthelper.adapter" />
<package android:name="com.android.systemui" />
<package android:name="com.android.settings" />
<package android:name="com.android.bluetooth" />
<package android:name="com.google.android.bluetooth" />
<package android:name="com.google.android.settings.intelligence" />
</queries>
<attribution
android:tag="BtHelper"
android:label="@string/app_name" />
<uses-permission android:name="android.permission.BATTERY_STATS"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" />
<uses-permission
android:name="android.permission.BLUETOOTH_SCAN"
android:usesPermissionFlags="neverForLocation"
tools:targetApi="s" />
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
<uses-permission android:name="android.permission.UPDATE_DEVICE_STATS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ANSWER_PHONE_CALLS" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
<uses-permission android:name="android.permission.LOCAL_MAC_ADDRESS" />
<uses-permission android:name="android.permission.DEVICE_POWER" />
<uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS" />
<protected-broadcast android:name="batterywidget.impl.action.update_bluetooth_data" />
<protected-broadcast android:name="com.android.bluetooth.bthelper.CONNECTED" />
<protected-broadcast android:name="com.android.bluetooth.bthelper.DISCONNECTED" />
<protected-broadcast android:name="com.android.bluetooth.bthelper.NAME_CHANGED" />
<protected-broadcast android:name="com.android.bluetooth.bthelper.SET_ANC_MODE" />
<protected-broadcast android:name="com.android.bluetooth.bthelper.SET_SLICE" />
<uses-feature
android:name="android.hardware.bluetooth_le"
android:required="false" />
<uses-feature
android:name="android.hardware.telephony"
android:required="false" />
<application
android:icon="@mipmap/ic_bthelper"
android:label="@string/app_name"
android:defaultToDeviceProtectedStorage="true"
android:enableOnBackInvokedCallback="true"
android:persistent="true">
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="com.android.bluetooth.bthelper.androidx-startup"
tools:replace="android:authorities" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.android.bluetooth.bthelper.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<activity
android:name=".settings.MainSettingsActivity"
android:exported="true"
android:label="@string/settings_title"
android:theme="@style/Theme.SubSettingsBase.Expressive">
<intent-filter>
<action android:name="com.android.bluetooth.bthelper.ACTION_PENDING_INTENT" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".settings.MainSettingsFragment"
android:exported="true">
<intent-filter>
<action android:name="com.android.bluetooth.bthelper.ACTION_PENDING_INTENT" />
</intent-filter>
</activity>
<!-- AirPods services -->
<service
android:name=".pods.PodsService"
android:enabled="true"
android:exported="true" />
<receiver
android:name=".StartupReceiver"
android:enabled="true"
android:exported="true"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.bluetooth.a2dp.profile.action.ACTIVE_DEVICE_CHANGED" />
<action android:name="android.bluetooth.a2dp.profile.action.AVRCP_CONNECTION_STATE_CHANGED" />
<action android:name="android.bluetooth.a2dp.profile.action.CODEC_CONFIG_CHANGED" />
<action android:name="android.bluetooth.a2dp.profile.action.PLAYING_STATE_CHANGED" />
<action android:name="android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED" />
<action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
<action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" />
<action android:name="android.bluetooth.device.action.NAME_CHANGED" />
<action android:name="android.bluetooth.headset.action.VENDOR_SPECIFIC_HEADSET_EVENT" />
<action android:name="android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED" />
</intent-filter>
</receiver>
</application>
</manifest>