public void installPackage(@NonNull File apkFile, int timeout, ILogger logger) throws DeviceException {
try {
iDevice.installPackage(apkFile.getAbsolutePath(), true /*reinstall*/);
} catch (Exception e) {
logger.error(e, "Unable to install " + apkFile.getAbsolutePath());
throw new DeviceException(e);
}
}