blob: 595052e9fe1e9d33233fbe678fb042dda08a9b69 [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
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080021 <application
22 android:process="android.process.acore"
23 android:label="@string/app_label"
Abhijith Shastry35676f92016-01-23 22:16:39 -080024 android:usesCleartextTraffic="false"
Jeff Sharkey459c07b2016-03-17 11:06:12 -060025 android:defaultToDeviceProtectedStorage="true"
Abhijith Shastrya2273952016-03-11 18:36:53 -080026 android:directBootAware="true"
27 android:allowBackup="true"
Patrick Baumann890cd852020-02-10 09:35:46 -080028 android:forceQueryable="true"
Abhijith Shastry4d0a0772016-03-21 18:32:03 -070029 android:backupAgent=".BlockedNumberBackupAgent"
30 android:killAfterRestore="false">
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080031
Abhijith Shastry6eb02aa2016-03-21 18:00:59 -070032 <meta-data android:name="com.google.android.backup.api_key"
33 android:value="AEdPqrEAAAAIRdCykcev-SjrWshQG1Fq5-ZbktewFXgOnb3U5g" />
34
Makoto Onuki28b6a0f2016-01-12 15:53:00 -080035 <provider android:name="BlockedNumberProvider"
36 android:authorities="com.android.blockednumber"
37 android:multiprocess="false"
38 android:exported="true">
39 </provider>
40 </application>
41</manifest>