summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/phonelookup/database/AndroidManifest.xml
diff options
context:
space:
mode:
authorzachh <zachh@google.com>2017-11-09 18:33:11 -0800
committerZachary Heidepriem <zachh@google.com>2017-11-11 20:24:00 -0800
commite841eabd475f515b96349b85b48ae00ac6603d3f (patch)
tree511dffefb35d5b1a4b149cd4bef45f8ec318c5a9 /java/com/android/dialer/phonelookup/database/AndroidManifest.xml
parentefd5f75eaf20473b34dd19fa259c7fd6525ff9b4 (diff)
Added content provider for PhoneLookupHistory.
Bug: 34672501 Test: yes PiperOrigin-RevId: 175243488 Change-Id: Iec3b5eb0e81f6e6cc04c64c3ea65c9c7fcb33fe3
Diffstat (limited to 'java/com/android/dialer/phonelookup/database/AndroidManifest.xml')
-rw-r--r--java/com/android/dialer/phonelookup/database/AndroidManifest.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/java/com/android/dialer/phonelookup/database/AndroidManifest.xml b/java/com/android/dialer/phonelookup/database/AndroidManifest.xml
new file mode 100644
index 000000000..5645133f1
--- /dev/null
+++ b/java/com/android/dialer/phonelookup/database/AndroidManifest.xml
@@ -0,0 +1,28 @@
+<!--
+ ~ Copyright (C) 2017 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.dialer.phonelookup.database">
+
+ <application>
+
+ <provider
+ android:authorities="com.android.dialer.phonelookuphistory"
+ android:exported="false"
+ android:multiprocess="false"
+ android:name=".PhoneLookupHistoryContentProvider"/>
+
+ </application>
+</manifest>