|
|
@@ -87,7 +87,7 @@ public class JitsiMeetActivity extends FragmentActivity
|
|
87
|
87
|
return fragment.getJitsiView();
|
|
88
|
88
|
}
|
|
89
|
89
|
|
|
90
|
|
- protected void join(@Nullable String url) {
|
|
|
90
|
+ public void join(@Nullable String url) {
|
|
91
|
91
|
JitsiMeetConferenceOptions options
|
|
92
|
92
|
= new JitsiMeetConferenceOptions.Builder()
|
|
93
|
93
|
.setRoom(url)
|
|
|
@@ -95,7 +95,7 @@ public class JitsiMeetActivity extends FragmentActivity
|
|
95
|
95
|
join(options);
|
|
96
|
96
|
}
|
|
97
|
97
|
|
|
98
|
|
- protected void join(JitsiMeetConferenceOptions options) {
|
|
|
98
|
+ public void join(JitsiMeetConferenceOptions options) {
|
|
99
|
99
|
getJitsiView().join(options);
|
|
100
|
100
|
}
|
|
101
|
101
|
|