owt-client-android
owt-client-android copied to clipboard
rejoin confrence When not kill process and exit application, the video is black.
- join a conference.
- Press desconnnect button.
- Press cack button at Login Layout . exit the app.
- Enter again.
- Press connect button, rejoin conference. the screen is black. 100% reproduction. in XiaoMi Mix2 Android version 8.0.0
It seems that some resources were taken. You can solve this by add below in src/sample/conference/src/main/java/owt/sample/conference/MainActivity.java
@Override
protected void onDestroy() {
super.onDestroy();
System.exit(0);
}
use System.exit(0);
to release resources.
Duplicate of #232