Re: [mono-android] ConcurrentStack<>.PushRange not implemented?

2012-05-24 Thread gpe
Same for PushRange. Yes your code behave the same here. But I don't know why my app does not. Here I am pushing a stack of 4 elements into an empty stack and it fails as well as with 1 element pushed. [image: Inline image 2] On Thu, May 24, 2012 at 5:14 PM, Jonathan Pryor-2 [via Mono for Android

Re: [mono-android] Will this x86 emulator work for Mono for Android?

2012-05-24 Thread ChrisNTR
There's a nice little document on this here too: http://docs.xamarin.com/android/getting_started/installation/Configuring_the_x86_Emulator ChrisNTR On Thu, May 24, 2012 at 10:10 PM, Miljenko Cvjetko < mcvje...@holisticware.net> wrote: > Just one click away > Project properties +/ x86 check > > c

Re: [mono-android] Will this x86 emulator work for Mono for Android?

2012-05-24 Thread Miljenko Cvjetko
Just one click away Project properties +/ x86 check cheers On 2012.05.24 23:11, Dean Cleaver wrote: Heh - good to know. I don't read this list much as I last did any droid development about a year ago, but I keep in touch as I will have to make a droid version of new apps soon. Dino -Or

Re: [mono-android] Will this x86 emulator work for Mono for Android?

2012-05-24 Thread Dean Cleaver
Heh - good to know. I don't read this list much as I last did any droid development about a year ago, but I keep in touch as I will have to make a droid version of new apps soon. Dino -Original Message- From: monodroid-boun...@lists.ximian.com [mailto:monodroid-boun...@lists.ximian.com

Re: [mono-android] Will this x86 emulator work for Mono for Android?

2012-05-24 Thread Miljenko Cvjetko
Warp 3! Resistance is futile mel On 2012.05.24 22:58, Dean Cleaver wrote: http://www.androidcentral.com/intel-releases-x86-system-image-android-emulator Dino ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://

Re: [mono-android] Will this x86 emulator work for Mono for Android?

2012-05-24 Thread Jonathan Pryor
The x86 emulator should work, considering that we're using it. ;-) http://blog.xamarin.com/2012/05/21/getting-started-using-mono-for-android-seminar/ - Jon On May 24, 2012, at 4:58 PM, Dean Cleaver wrote: > http://www.androidcentral.com/intel-releases-x86-system-image-android-emulator

[mono-android] Will this x86 emulator work for Mono for Android?

2012-05-24 Thread Dean Cleaver
http://www.androidcentral.com/intel-releases-x86-system-image-android-emulator Dino ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid

Re: [mono-android] Bluetooth Discovery Events

2012-05-24 Thread Jonathan Pryor
On May 21, 2012, at 8:42 AM, Hänke, Maik wrote: > can someone confirm that it is not possible to receive the > BluetoothAdapter.ActionDiscoveryStarted > orBluetoothAdapter.ActionDiscoveryFinished event when searching for Bluetooth > devices? I implemented a BroadcastReceiver that is registered t

Re: [mono-android] Using ksoap library in Monodroid project

2012-05-24 Thread Dariusz Sroka
W dniu 2012-05-24 17:44, Jonathan Pryor pisze: On May 24, 2012, at 11:39 AM, Dariusz Sroka wrote: I've tried this way, but I was not sure about return type. (it should be get_EventType btw). As per the attribute name (//method/@jni-name), it needs to be the Java/JNI method name, not the C# me

Re: [mono-android] Using ksoap library in Monodroid project

2012-05-24 Thread Jonathan Pryor
On May 24, 2012, at 11:39 AM, Dariusz Sroka wrote: > I've tried this way, but I was not sure about return type. (it should be > get_EventType btw). As per the attribute name (//method/@jni-name), it needs to be the Java/JNI method name, not the C# method name. I highly doubt that a Java method i

Re: [mono-android] Using ksoap library in Monodroid project

2012-05-24 Thread Dariusz Sroka
Hi, Properties are methods; the same syntax applies, with the stipulation that the return type is the "return" parameter: http://docs.xamarin.com/android/tutorials/Binding_a_Java_Library_(.jar)#Correcting_Enums - Jon I've tried this wa

Re: [mono-android] Using ksoap library in Monodroid project

2012-05-24 Thread Jonathan Pryor
On May 24, 2012, at 6:46 AM, Dariusz Sroka wrote: > I saw examples how to map method types to correct enums, but I dont know how > to map Properties? Any advices? Properties are methods; the same syntax applies, with the stipulation that the return type is the "return" parameter: http:

Re: [mono-android] ConcurrentStack<>.PushRange not implemented?

2012-05-24 Thread Jonathan Pryor
On May 24, 2012, at 3:15 AM, gpe wrote: > I am using the generic ConcurrentStack in some of my code. And when using it > on monodroid I noticed that the method PushRange and TryPopRange do not work. Can you elaborate? It is implemented, but I have found a bug wherein arrays of length 1 don't wor

[mono-android] Using ksoap library in Monodroid project

2012-05-24 Thread Dariusz Sroka
Hi, I'm trying to use ksoap library (v2.6.4) in my monodroid project. I have created Java bindings library with ksoap.jar file. During compilation I get such error: 'Org.Kxml2.IO.KXmlParser' does not implement interface member 'Org.XmlPull.V1.IXmlPullParser.EventType'. 'Org.Kxml2.IO.KXmlPars

[mono-android] ConcurrentStack<>.PushRange not implemented?

2012-05-24 Thread gpe
I am using the generic ConcurrentStack in some of my code. And when using it on monodroid I noticed that the method PushRange and TryPopRange do not work. They are present in http://docs.monodroid.net/?link=T%3aSystem.Collections.Concurrent.ConcurrentStack%601 the documentation of monodroid (with