Re: [mono-android] Saving a log file and attaching to an e-mail

2011-12-12 Thread Jonathan Pryor
On Dec 12, 2011, at 12:17 PM, Neal Culiner wrote: > Anyone see anything wrong with what I’m doing? No. What API level and device are you having problems on? The following nearly identical code works for me: var recips = new string[] { "em...@example.com" }; string MessageBody = "

[mono-android] Saving a log file and attaching to an e-mail

2011-12-12 Thread Neal Culiner
Hello MfA devs, I have a routine just like I use in MonoTouch (and works) that writes info such as exception to a log file. private static void WriteToLog(string msg) { #if DEBUG Android.Util.Log.Info("LOGBOOK PRO", msg); #endif