make call notification receiver exported and enabled

This commit is contained in:
tibbi 2020-05-03 20:35:31 +02:00
parent bf1db86b4f
commit 6851a7c6d8
1 changed files with 6 additions and 3 deletions

View File

@ -279,10 +279,13 @@
</intent-filter>
</service>
<receiver android:name=".receivers.CallActionReceiver">
<receiver
android:name=".receivers.CallActionReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.simplemobiletools.contacts.action.ACCEPT_CALL"/>
<action android:name="com.simplemobiletools.contacts.action.DECLINE_CALL"/>
<action android:name="com.simplemobiletools.contacts.action.ACCEPT_CALL" />
<action android:name="com.simplemobiletools.contacts.action.DECLINE_CALL" />
</intent-filter>
</receiver>