Introduce ActiveCallManager to prevent android service crashes during call handling.

This commit is contained in:
Cody Henthorne
2024-01-23 10:34:34 -05:00
committed by Greyson Parrelli
parent ee19520e1b
commit 96823e944d
6 changed files with 443 additions and 26 deletions

View File

@@ -1396,6 +1396,16 @@
</intent-filter>
</receiver>
<service android:name="org.thoughtcrime.securesms.service.webrtc.ActiveCallManager$ActiveCallForegroundService" android:exported="false" />
<receiver android:name="org.thoughtcrime.securesms.service.webrtc.ActiveCallManager$ActiveCallServiceReceiver" android:exported="false">
<intent-filter>
<action android:name="org.thoughtcrime.securesms.service.webrtc.ActiveCallAction.DENY"/>
</intent-filter>
<intent-filter>
<action android:name="org.thoughtcrime.securesms.service.webrtc.ActiveCallAction.HANGUP"/>
</intent-filter>
</receiver>
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
</application>