Use QUERY_ALL_PACKAGES permission from FuseDaemonTest

FuseDaemonTest installs helper test apps and ensures they're installed
by checking their version code. Due to ag/9751780, this doesn't work out
of the box anymore and needs QUERY_ALL_PACKAGES permission to work. This
CL adds this permission to FuseDaemonTest's AndroidManifest.xml.

Test: atest FuseDaemonHostTest
Fixes: 149567690
Change-Id: Iaaaaea39ecadaa458f5cdc7287cddd7d62aaff8e
diff --git a/tests/jni/FuseDaemonTest/AndroidManifest.xml b/tests/jni/FuseDaemonTest/AndroidManifest.xml
index 4d97911..cdae039 100644
--- a/tests/jni/FuseDaemonTest/AndroidManifest.xml
+++ b/tests/jni/FuseDaemonTest/AndroidManifest.xml
@@ -17,13 +17,13 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.android.tests.fused" >
 
+    <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
     <application>
         <receiver android:name="com.android.cts.install.lib.LocalIntentSender"
                   android:exported="true" />
         <uses-library android:name="android.test.runner" />
     </application>
 
-
     <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
                      android:targetPackage="com.android.tests.fused"
                      android:label="Tests for file path access when FuseDaemon is active"/>