Re: [mono-android] Release version errors

2012-07-25 Thread Jonathan Pryor
On Jul 24, 2012, at 5:45 AM, Goncalo Oliveira wrote: > Let me see if I get this straight. I do have an additional project that is > referenced by the application. It's basically the data model classes. I need > to add the "[Android.Runtime.Preserve(AllMembers=true)]" attribute to the > classes

Re: [mono-android] Minimum Android to Target (suggest use term Default)

2012-07-25 Thread Jonathan Pryor
On Jul 25, 2012, at 1:57 PM, Neal Culiner wrote: > However, to get support for the newer features, as you know, I had to set the > Minimum Android to Target to 4.0. I then saw that the package that was sent > to my device and later an emulator was a higher package version. I'm not sure I under

Re: [mono-android] Minimum Android to Target (suggest use term Default)

2012-07-25 Thread Darren Abbott
I posted a similar question to this group recently. AndroidManifest.xml supports "minSdkVersion" and "targetSdkVersion" attributes. The target SDK version being higher than the min SDK is supposed to mean you can use features from higher SDK level, but have taken steps to insure you are backwards

[mono-android] Minimum Android to Target (suggest use term Default)

2012-07-25 Thread Neal Culiner
I'm implementing features in Android OS 4 but still supporting back to OS 2.2. I have the in my AndroidManifest.xml and all seems fine so far. However, to get support for the newer features, as you know, I had to set the Minimum Android to Target to 4.0. I then saw that the package that was sen

[mono-android] dynamic listview item expansion using ViewStub - selectively not working

2012-07-25 Thread Stephan Steiner
I have a listview that I'm populating at runtime - and I want a listview item to expand upon click (using a ViewStub). And I have this strange thing happening - if I enter the Activity showing the ListView, click on any item in the ListView except the last one, it expands as desired, but the last

Re: [mono-android] Automatic crash reporting

2012-07-25 Thread grupatnt
Hi Paul Had the same problem sometime while ago. Gave up on trying to convince ACRA to work and reimplemented most of the functionality in C#. Error value collection is mostly one on one map with a couple of exceptions re reflection and such. If you are only interested in submitting data to Goo

Re: [mono-android] Deploying to multiple devices

2012-07-25 Thread andyjohnson0
Thanks for replying. I understand how to get an apk onto the devices. My problem was that I didn't see how to build the apk without being forced to deploy it to a local device or emulator. Anyway, realised that I have to use Build->Package for Android. I really don't know why I failed to notice t

Re: [mono-android] Async and the UI

2012-07-25 Thread JLee
Hi Nosh, i had a similar problem few days ago, look here: http://mono-for-android.1047100.n5.nabble.com/Can-t-create-handler-inside-thread-sync-problem-why-td5710999.html In Android you have to use RunOnUiThread() Method to sync code to the ui. Your code have to lool like somthing like this: Run