summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/interactions/AndroidManifest.xml
blob: a4b09786b1d9b7ff69a493f44dc1e71c5d4c293d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.android.dialer.interactions">

  <application>

    <!-- Service to update a contact -->
    <service
      android:exported="false"
      android:name="com.android.dialer.interactions.ContactUpdateService"/>

    <receiver android:name="com.android.dialer.interactions.UndemoteOutgoingCallReceiver"
        android:exported="true">
      <intent-filter>
        <action android:name="android.intent.action.NEW_OUTGOING_CALL"/>
      </intent-filter>
    </receiver>

  </application>

</manifest>