use of com.testsigma.agent.exception.NativeBridgeException in project testsigma by testsigmahq.
the class AndroidDeviceListener method initializeNativeBridge.
public void initializeNativeBridge() throws NativeBridgeException {
try {
this.adBridge = adbBridge.getADBInstance();
if (!adBridge.hasInitialDeviceList()) {
waitForAdbInitialization();
}
bridgeInitialized = true;
} catch (Exception e) {
log.error(e.getMessage(), e);
throw new NativeBridgeException(e.getMessage(), e);
}
}
Aggregations