Shuo Qian cb1c40c826 Add permission QUERY_ALL_PACKAGES into WAPPushManager
Test: Sanity
Bug: 161319976
Change-Id: I931c5a7c5e9c5ee3fd72fa2c0a29df48073fd90c
Merged-In: I931c5a7c5e9c5ee3fd72fa2c0a29df48073fd90c
(cherry picked from commit 11bbbee915c5d02d4ef85c03695db8de8e486b9a)
(cherry picked from commit 647d9fb723457e216e24c15717bbb7f1dadafecf)
2020-07-22 17:59:05 +00:00

42 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
/*
* Copyright (C) 2007-2008 The Android Open Source Project
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.smspush">
<permission android:name="com.android.smspush.WAPPUSH_MANAGER_BIND"
android:protectionLevel="signatureOrSystem" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
<original-package android:name="com.android.smspush" />
<application
android:allowClearUserData="false">
<service android:name=".WapPushManager"
android:permission="com.android.smspush.WAPPUSH_MANAGER_BIND"
android:exported="true">
<intent-filter>
<action android:name="com.android.internal.telephony.IWapPushManager"></action>
</intent-filter>
</service>
</application>
</manifest>