Re: [mono-android] Fast deploy with different target and minimum SDK values?

2012-04-18 Thread craig
I'm having a similar issue. I would like to compile the project using API level 12 (3.1) but still want to be able to deploy to API level 4 (1.6). I'm using the Visual Studio plugin. As far as I can tell you have to set "Minimum android to target" = 3.1 and then create a manifest file and set th

Re: [mono-android] Performance of Canvas.DrawPoint

2012-04-18 Thread hawk66
Thanks Jonathan, I missed that completely ;) -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Performance-of-Canvas-DrawPoint-tp5644629p5649894.html Sent from the Mono for Android mailing list archive at Nabble.com. ___ Mon

[mono-android] Link to libmonosgen-2.0.so in emulator

2012-04-18 Thread fmcicreate
I need to call a C# DLL from C++, and I followed this http://www.mono-project.com/Embedding_Mono http://www.mono-project.com/Embedding_Mono . This works on my PC, but now I need to replicate this functionality into android. I have a NDK built shared library from which I would like to load the C#

[mono-android] Single Line Edittext

2012-04-18 Thread Nosh
Hi How can i stop the EditText being Multiline TIA -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Single-Line-Edittext-tp5649201p5649201.html Sent from the Mono for Android mailing list archive at Nabble.com. ___ Monodro

Re: [mono-android] System.Linq.Dynamic

2012-04-18 Thread laurar81
Great! Now with System.core it's perfect -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/System-Linq-Dynamic-tp5636105p5648494.html Sent from the Mono for Android mailing list archive at Nabble.com. ___ Monodroid mailing

Re: [mono-android] Excessive JNI global references (Again and again)

2012-04-18 Thread Jonathan Pryor
On Apr 18, 2012, at 4:11 AM, Igor Russkih wrote: > > You're using the Android.Widget.ArrayAdapter(Context, int, IList) > > constructor, which will construct a JavaList to contain the contents of the > > IList, which will result in a gref for each element within the list. If > > these are strings

Re: [mono-android] Troubles with linking of my app

2012-04-18 Thread Jonathan Pobst
You could try using a decompiler like Reflector to look at the assemblies it references. You want to ensure that the mscorlib.dll referenced is version 2.0.5. Jonathan On 4/18/2012 2:00 AM, Willem Meints wrote: Hmm, I did compile the assemblies of all my libraries using the MfA profile. It m

Re: [mono-android] Excessive JNI global references (Again and again)

2012-04-18 Thread Igor Russkih
> > > With original list of ~100 items, I'm getting overflow with just a > couple of device (or emulator) "flips": > Is this with Mono for Android 4.0.6 or the 4.1.0 alpha? In 4.1.0 we > altered things so that when we hit a gref threshold we perform a collection > automatically. It's still not a gr

Re: [mono-android] Troubles with linking of my app

2012-04-18 Thread Willem Meints
Hmm, I did compile the assemblies of all my libraries using the MfA profile. It must be either the xzing library or the NewtonSoft library that is causing the issue. Is there any way to find out which of these is causing the problem? -Original Message- From: Jonathan Pobst [mailto:mon..