-
Notifications
You must be signed in to change notification settings - Fork 20
Update to SDK 3.6.0 #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
2982b99 to
849ba16
Compare
| "react": "16.11.0", | ||
| "react-native": "0.62.2", | ||
| "react-native-jitsi-meet": "^2.1.1" | ||
| "react-native-jitsi-meet": "RocketChat/react-native-jitsi-meet#update-lib" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is weird.
This repo doesn't use bob, so example app doesn't work based on local files and need changes to be pushed to be tested.
We might want to create our own version of it.
| mJitsiMeetViewReference.getJitsiMeetView().getId(), | ||
| "conferenceJoined", | ||
| event); | ||
| @ReactProp(name="options") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I took this from https://github.com/sajanthomas01/react-native-jitsi-meet-extended
I removed part of the code to match the way we currently handle on iOS, but we can add later.
Sadly, it creates fragmentation on the way to have a call, but I couldn't find the reason why @ReactMethod call isn't working
react-native-jitsi-meet/android/src/main/java/com/reactnativejitsimeet/RNJitsiMeetModule.java
Line 35 in 427873b
| public void call(String url, ReadableMap userInfo) { |
|
|
||
| @ReactModule(name = RNJitsiMeetViewManager.REACT_CLASS) | ||
| public class RNJitsiMeetViewManager extends SimpleViewManager<RNJitsiMeetView> implements JitsiMeetViewListener { | ||
| public class RNJitsiMeetViewManager extends SimpleViewManager<RNJitsiMeetView> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed deprecated JitsiMeetViewListener and added BrodcastReceiver instead
RocketChat/Rocket.Chat.ReactNative#3292