You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
583 B

<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>