jitsi / jitsi-meet-sdk-samples

Jitsi Meet mobile SDK examples (Android, iOS and React Native)
Apache License 2.0
278 stars 240 forks source link

[Android] ConferenceService is not working #214

Open Poovit-B opened 10 months ago

Poovit-B commented 10 months ago

In the android/app/src/main/AndroidManifest.xml, I have added the necessary configuration:

 <service
        android:name="org.jitsi.meet.sdk.JitsiMeetOngoingConferenceService"
        android:foregroundServiceType="mediaProjection" />

Additionally, the call-integration.enabled flag is set to true.

On iOS, everything is working seamlessly. However, on Android, while the Jitsi Meet functionality is working fine, it seems that the ConferenceService is not available.

Additional Information:

React Native Version: 0.72.7 @jitsi/react-native-sdk Version: 1.0.3 @react-native-google-signin/google-signin Version: 10.1.1 react-native-webrtc Version: 118.0.0

saghul commented 10 months ago

Do you mean ConnectionService? https://developer.android.com/reference/android/telecom/ConnectionService

Poovit-B commented 10 months ago

Do you mean ConnectionService? https://developer.android.com/reference/android/telecom/ConnectionService

Hi @saghul,

Thank you for your continued support.

It appears that Jitsi for Android might not currently support ConnectionService. Is that correct?

In my quest for a solution, I came across the react-native-callkeep library (https://github.com/react-native-webrtc/react-native-callkeep) for integrating with Jitsi. Could you provide any insights or recommendations regarding this approach?

saghul commented 10 months ago

We do have support for it, but due to how many probelms we've seen with many manufacturers we opted to disable it by default.

Right now CS is not even built for the RN SDK for this reason. A PR making it possible would be acceptable though.