Makoto Onuki | 28b6a0f | 2016-01-12 15:53:00 -0800 | [diff] [blame] | 1 | <?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 Onuki | 28b6a0f | 2016-01-12 15:53:00 -0800 | [diff] [blame] | 21 | <application |
| 22 | android:process="android.process.acore" |
| 23 | android:label="@string/app_label" |
Abhijith Shastry | 35676f9 | 2016-01-23 22:16:39 -0800 | [diff] [blame] | 24 | android:usesCleartextTraffic="false" |
Jeff Sharkey | 459c07b | 2016-03-17 11:06:12 -0600 | [diff] [blame] | 25 | android:defaultToDeviceProtectedStorage="true" |
Abhijith Shastry | a227395 | 2016-03-11 18:36:53 -0800 | [diff] [blame] | 26 | android:directBootAware="true" |
| 27 | android:allowBackup="true" |
Patrick Baumann | 890cd85 | 2020-02-10 09:35:46 -0800 | [diff] [blame^] | 28 | android:forceQueryable="true" |
Abhijith Shastry | 4d0a077 | 2016-03-21 18:32:03 -0700 | [diff] [blame] | 29 | android:backupAgent=".BlockedNumberBackupAgent" |
| 30 | android:killAfterRestore="false"> |
Makoto Onuki | 28b6a0f | 2016-01-12 15:53:00 -0800 | [diff] [blame] | 31 | |
Abhijith Shastry | 6eb02aa | 2016-03-21 18:00:59 -0700 | [diff] [blame] | 32 | <meta-data android:name="com.google.android.backup.api_key" |
| 33 | android:value="AEdPqrEAAAAIRdCykcev-SjrWshQG1Fq5-ZbktewFXgOnb3U5g" /> |
| 34 | |
Makoto Onuki | 28b6a0f | 2016-01-12 15:53:00 -0800 | [diff] [blame] | 35 | <provider android:name="BlockedNumberProvider" |
| 36 | android:authorities="com.android.blockednumber" |
| 37 | android:multiprocess="false" |
| 38 | android:exported="true"> |
| 39 | </provider> |
| 40 | </application> |
| 41 | </manifest> |