-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
AndroidManifest.xml
57 lines (47 loc) · 2.22 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="app.grapheneos.logviewer">
<uses-permission android:name="android.permission.READ_LOGS" />
<uses-permission android:name="android.permission.READ_LOGS_FULL" />
<!-- needed for checking whether the bootloader is unlocked-->
<uses-permission android:name="android.permission.READ_OEM_UNLOCK_STATE" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<uses-permission android:name="android.permission.QUERY_USERS" />
<permission android:name="app.grapheneos.logviewer.SHOW_LOGCAT"
android:protectionLevel="signature|privileged" />
<permission android:name="app.grapheneos.logviewer.SHOW_ERROR_REPORT"
android:protectionLevel="signature|preinstalled" />
<application
android:label="@string/app_label"
android:theme="@style/Theme"
android:largeHeap="true"
>
<activity
android:name=".LogcatActivity"
android:permission="app.grapheneos.logviewer.SHOW_LOGCAT"
android:documentLaunchMode="always"
android:exported="true" >
<intent-filter>
<action android:name="${applicationId}.LOGCAT" />
<action android:name="${applicationId}.PKG_LOGCAT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ErrorReportActivity"
android:permission="app.grapheneos.logviewer.SHOW_ERROR_REPORT"
android:documentLaunchMode="always"
android:exported="true" >
<intent-filter>
<action android:name="${applicationId}.ERROR_REPORT" />
<action android:name="android.intent.action.APP_ERROR" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<provider
android:name=".BlobProvider"
android:authorities="${applicationId}.BlobProvider"
android:grantUriPermissions="true"
android:exported="false" />
</application>
</manifest>