Facing an error in android studio, it says cannot resolve symbol 'JitsiMeetConferenceOptions'

Viewed 41

So basically i need help in understanding how to use jitsi android sdk in android studio because when i try to integrate it using the steps given in its documentation, it throws an error. I have added this dependency in build.gradle(module)

implementation ('org.jitsi.react:jitsi-meet-sdk:+') { transitive = true }

error dependency

1 Answers

Should add proper version of the implementation

implementation ('org.jitsi.react:jitsi-meet-sdk:5.1.0') { transitive = true }

Related