-
-
Save alanmcgovern/b34533235d56f4382e28 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void ThrowIfNotInstalled () | |
{ | |
if (!MonoDroidFramework.IsInstalled) { | |
var title = GettextCatalog.GetString ("Mono for Android is not installed"); | |
var message = GettextCatalog.GetString ("The Mono for Android SDK is required to " + | |
"develop applications for Android. Please install Mono for Android, you can " + | |
"download it from the Xamarin website.{0}{0}http://android.xamarin.com", Environment.NewLine); | |
throw new UserException (title, message); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment