Home | History | Annotate | Download | only in interactions
      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       <intent-filter>
     13         <action android:name="android.intent.action.NEW_OUTGOING_CALL"/>
     14       </intent-filter>
     15     </receiver>
     16 
     17   </application>
     18 
     19 </manifest>
     20 
     21