in azure-communication-ui/calling/src/main/java/com/azure/android/communication/ui/calling/CallComposite.java [715:728]
public void bringToForeground(final Context context) {
final boolean hasCallComposite = CallCompositeInstanceManager.hasCallComposite(instanceId);
if (hasCallComposite) {
final DependencyInjectionContainer container = diContainer;
if (container != null) {
final CallingStatus currentStatus =
container.getAppStore().getCurrentState().getCallState().getCallingStatus();
if (currentStatus != CallingStatus.DISCONNECTING
&& currentStatus != CallingStatus.DISCONNECTED) {
showUI(context, false);
}
}
}
}