Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ public void onStatus(EMDKManager.StatusData statusData, EMDKBase emdkBase) {
{
String errorMessage = "Error when trying to retrieve ProfileManager: " + getResultCode(statusData.getResult());
logMessage(errorMessage, EMessageType.ERROR);

// Timed out, try again
if (statusData.getResult() == EMDKResults.STATUS_CODE.FEATURE_NOT_READY_TO_USE) {
onEMDKManagerRetrieved(mEMDKManager);
}
}
}
};
Expand All @@ -96,7 +101,7 @@ public void onClosed() {
public DIProfileManagerCommand(Context aContext) {
super(aContext);
mSettings = new DICommandBaseSettings(){{
mTimeOutMS = 20000;
mTimeOutMS = 120000;
mEnableTimeOutMechanism = true;
mCommandId = "DWProfileManagerCommand";
}};
Expand Down