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
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
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
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
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
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
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
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