android: expose JitsiMeetActivity.leave()
This commit is contained in:
parent
aab3428347
commit
08891b17b6
|
@ -73,7 +73,7 @@ public class JitsiMeetActivity extends FragmentActivity
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void finish() {
|
public void finish() {
|
||||||
getJitsiView().leave();
|
leave();
|
||||||
|
|
||||||
super.finish();
|
super.finish();
|
||||||
}
|
}
|
||||||
|
@ -99,6 +99,10 @@ public class JitsiMeetActivity extends FragmentActivity
|
||||||
getJitsiView().join(options);
|
getJitsiView().join(options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void leave() {
|
||||||
|
getJitsiView().leave();
|
||||||
|
}
|
||||||
|
|
||||||
private @Nullable JitsiMeetConferenceOptions getConferenceOptions(Intent intent) {
|
private @Nullable JitsiMeetConferenceOptions getConferenceOptions(Intent intent) {
|
||||||
String action = intent.getAction();
|
String action = intent.getAction();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue