jitsi / jitsi-meet-sdk-samples

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

Jitsi Android starts dialing up call out a phone number with room id when join a room #111

Open okq91 opened 3 years ago

okq91 commented 3 years ago
 JitsiMeetConferenceOptions options
                = new JitsiMeetConferenceOptions.Builder()
                .setServerURL(serverURL)
                .setRoom(roomName)
                .setWelcomePageEnabled(false)
                .setVideoMuted(true)
                .setAudioOnly(true) // Settings for audio and video
                .build();

        JitsiMeetActivity.launch(this, options);

dialing up starts with room id as phone number after join the meeting. Android version 11, lower versions work fine.

Screenshot_20210711-231645

GPavlioudakis commented 2 years ago

Did you find the solution on this issue? Same happens to me in Android 12.

saghul commented 2 years ago

That sounds like a bug in the ConnectionService implementation of your Android ROM.

I'd suggest disabling native call integration (see the feature flags) and trying again.