1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2  package="com.android.dialer.interactions">
3
4  <application>
5
6    <!-- Service to update a contact -->
7    <service
8      android:exported="false"
9      android:name="com.android.dialer.interactions.ContactUpdateService"/>
10
11    <receiver android:name="com.android.dialer.interactions.UndemoteOutgoingCallReceiver"
12        android:exported="true">
13      <intent-filter>
14        <action android:name="android.intent.action.NEW_OUTGOING_CALL"/>
15      </intent-filter>
16    </receiver>
17
18  </application>
19
20</manifest>
21
22