Skip to content

Commit 6851a7c

Browse files
committed
make call notification receiver exported and enabled
1 parent bf1db86 commit 6851a7c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,13 @@
279279
</intent-filter>
280280
</service>
281281

282-
<receiver android:name=".receivers.CallActionReceiver">
282+
<receiver
283+
android:name=".receivers.CallActionReceiver"
284+
android:enabled="true"
285+
android:exported="true">
283286
<intent-filter>
284-
<action android:name="com.simplemobiletools.contacts.action.ACCEPT_CALL"/>
285-
<action android:name="com.simplemobiletools.contacts.action.DECLINE_CALL"/>
287+
<action android:name="com.simplemobiletools.contacts.action.ACCEPT_CALL" />
288+
<action android:name="com.simplemobiletools.contacts.action.DECLINE_CALL" />
286289
</intent-filter>
287290
</receiver>
288291

0 commit comments

Comments
 (0)