Adding new QUERY_ALL_PACKAGES permission in AndroidManifest.xml to allow querying of
other apps by AppPredictionService.

Bug: 163420027
Test: Tested manually on blueline device.
Change-Id: I1984e6ee5fe6d491feefb761f9b27318a3bb1c51
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index c85ddb6..058f991 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -17,6 +17,8 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.android.apppredictionservice">
 
+    <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
+
     <application>
         <service
             android:name=".PredictionService"
@@ -28,4 +30,5 @@
         </service>
 
     </application>
+
 </manifest>