Skip to content

Commit 213efa4

Browse files
authored
Package Inspector Updates (#2174)
Android v>=11 needs to have QUERY_ALL_PACKAGES to be able to simply query all packages as the pkg inspector intends to do.
1 parent 7317107 commit 213efa4

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
34
package="com.microsoft.inspector">
45

6+
<uses-permission
7+
android:name="android.permission.QUERY_ALL_PACKAGES"
8+
tools:ignore="QueryAllPackagesPermission"></uses-permission>
9+
10+
511
<application
612
android:allowBackup="true"
713
android:icon="@mipmap/ic_launcher"
814
android:label="@string/app_name"
915
android:roundIcon="@mipmap/ic_launcher_round"
1016
android:supportsRtl="true"
1117
android:theme="@style/AppTheme">
12-
<activity
18+
<activity
1319
android:name="com.microsoft.inspector.MainActivity"
1420
android:exported="true">
1521
<intent-filter>
@@ -19,5 +25,4 @@
1925
</intent-filter>
2026
</activity>
2127
</application>
22-
2328
</manifest>

0 commit comments

Comments
 (0)