summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAnne Rong <annerong@google.com>2015-08-10 17:45:55 -0700
committerAnne Rong <annerong@google.com>2015-08-19 11:32:53 -0700
commit6fcdcc15f3b8786e0ecab5886324eeb212c58699 (patch)
treeab80eb215de719da1015c05843dbdb2e87a95cff /AndroidManifest.xml
parentab183510ce4ed4538d5bbbbfba512db240b32f27 (diff)
Create local database table + ContentProvider for filtered numbers
Bug: 23350722 Bug: 23350276 Change-Id: I070434cead43aa93026aa6b00ab886aa2947b1e6
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 9569c1d00..926300927 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -22,7 +22,6 @@
android:minSdkVersion="23"
android:targetSdkVersion="23" />
-
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
@@ -296,5 +295,12 @@
<action android:name="android.telecom.InCallService"/>
</intent-filter>
</service>
+
+ <provider
+ android:name=".database.FilteredNumberProvider"
+ android:authorities="com.android.dialer"
+ android:exported="false"
+ android:multiprocess="false"
+ />
</application>
</manifest>