blob: 3493527fb4e0c8b1af1b32777e20caad1df07912 [file] [log] [blame]
Makoto Onuki28b6a0f2016-01-12 15:53:00 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.providers.blockednumber"
19 android:sharedUserId="android.uid.shared">
20
Grace Jia29529342021-06-09 20:52:14 -070021 <uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />
22
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080023 <application
24 android:process="android.process.acore"
25 android:label="@string/app_label"
Abhijith Shastry35676f92016-01-23 22:16:39 -080026 android:usesCleartextTraffic="false"
Jeff Sharkey459c07b2016-03-17 11:06:12 -060027 android:defaultToDeviceProtectedStorage="true"
Abhijith Shastrya2273952016-03-11 18:36:53 -080028 android:directBootAware="true"
29 android:allowBackup="true"
Patrick Baumann890cd852020-02-10 09:35:46 -080030 android:forceQueryable="true"
Abhijith Shastry4d0a0772016-03-21 18:32:03 -070031 android:backupAgent=".BlockedNumberBackupAgent"
32 android:killAfterRestore="false">
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080033
Abhijith Shastry6eb02aa2016-03-21 18:00:59 -070034 <meta-data android:name="com.google.android.backup.api_key"
35 android:value="AEdPqrEAAAAIRdCykcev-SjrWshQG1Fq5-ZbktewFXgOnb3U5g" />
36
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080037 <provider android:name="BlockedNumberProvider"
38 android:authorities="com.android.blockednumber"
39 android:multiprocess="false"
40 android:exported="true">
41 </provider>
42 </application>
43</manifest>