Extract Android dependencies from .netstandard libraries

This commit is contained in:
John Lewin 2018-12-15 08:53:46 -08:00
parent 6ea0de691c
commit 54c3dbb08e
12 changed files with 43 additions and 612 deletions

View file

@ -181,14 +181,10 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
return;
}
#if __ANDROID__
UiThread.RunOnIdle(() => DialogWindow.ChangeToPage(new AndroidConnectDevicePage(printer)));
#else
UiThread.RunOnIdle(() =>
{
DialogWindow.ChangeToPage(new SetupStepComPortOne(printer));
DialogWindow.ChangeToPage(AppContext.Platform.GetConnectDevicePage(printer) as DialogPage);
});
#endif
}
}
});