How to speed up MonoTouch compilation time?

Build Time Improvements in Xamarin.iOS 6.4 Xamarin.iOS 6.4 has significant build time improvements, and there is now an option to only send updated bits of code to the device. See for yourself: (source: xamarin.com) Read more and learn how to enable incremental build in Rolf’s post. Evolve 2013 Video An updated and expanded version of … Read more

How do I launch multiple instances of Xamarin Studio on the Mac (Visual Studio for Mac)? [duplicate]

Just want a tool? If you just want to download something that does this for you, there is also the MS Solution Launcher or the older Xamarin Studio Launcher v3. Presumably, it does something similar to the script below but comes in a nice pre-built app with a distinct icon you just copy to your … Read more

Anyone have experience with architecture for cross platform WP7 Android iOS mobile development (monotouch, monodroid, C#)

You might want to look into the MonoCross project which is designed to help you reuse C# code with multiple presentation layers: http://code.google.com/p/monocross/ The authors of MonoCross (ITR Mobility) have created multiple mobile cross platform solutions for a variety of customers and have written two books on the subject one is “iPad in the Enterprise” … Read more

How to prevent iOS crash reporters from crashing MonoTouch apps?

Put this in AppDelegate.cs: [DllImport (“libc”)] private static extern int sigaction (Signal sig, IntPtr act, IntPtr oact); enum Signal { SIGBUS = 10, SIGSEGV = 11 } static void EnableCrashReporting () { IntPtr sigbus = Marshal.AllocHGlobal (512); IntPtr sigsegv = Marshal.AllocHGlobal (512); // Store Mono SIGSEGV and SIGBUS handlers sigaction (Signal.SIGBUS, IntPtr.Zero, sigbus); sigaction (Signal.SIGSEGV, … Read more

Publishing to TestFlight, new testers, do I really need to rebuild/download my provisioning profile?

No need to rebuild the .ipa Upload the .ipa Send invitations to testers Add their devices to provisioning profile Download the approved profile Go to TestFlight builds >> Permissions >> Upload profile … Click Send Email/Update You’re done – the new user get’s the link to download the app. Hope that helps.