[mono-android] Github.MonodroidSamples.APIDemo Assets filename casing problem

2011-09-21 Thread Miljenko Cvjetko
HI I know this Asset naming problem is known, just it would be nice to correct samples on github for those which are not familiar with this issue and for those to come. For a purpose of one presentationfor several students, just pulled src from github yesterday and got error. Problem: 1. S

[mono-android] MonoDroid Professional Licence

2011-09-21 Thread Miljenko Cvjetko
Hi Another licensing question: Is it legal to install/activate Professional version both on * Windows (VS and MonoDevelop) and * Mac? thanks and regards mel -- Miljenko Cvjetko dipl.ing. ET Direktor/CEO Projektant rjes(enja/Solution Architect Razvojni programer/Sen

[mono-android] Xamarin Survey

2011-09-21 Thread Mittchel Van Vliet
Dear Mono for Android users, I'm doing a research about Mono for Android and MonoTouch and I really like to ask everyone some questions 8 questions to be exact. The survey will only take a few minutes of your time, and would help me alot. You can fill in the survey right here: http://www.surveymo

[mono-android] System.Net.Sockets exception

2011-09-21 Thread Nicklas Møller Jepsen
Hi, After I deploy my app to Android Market I get the following exception: ERROR/mono(5886): Unhandled Exception: System.TypeInitializationException: An exception was thrown by the type initializer for System.Net.Sockets.Socket ---> System.Net.Sockets.SocketException: An address incompatible wit

Re: [mono-android] MonoDroid Professional Licence

2011-09-21 Thread Jonathan Pryor
On Sep 21, 2011, at 5:39 AM, Miljenko Cvjetko wrote: > Is it legal to install/activate Professional version both on > • Windows (VS and MonoDevelop) and > • Mac? As long as you register it on <= 3 machines, you're fine. I have the same registration present on both OS X and a Windows

[mono-android] Honeycomb Emulator and "Hello World"

2011-09-21 Thread Dan Ransom
I'm running a trial of the MonoDroid VS extension and I can't seem to get the "Hello World" app to run on any Honeycomb emulators. The emulator itself seems to be fine and the app works with Gingerbread versions without incident. Keep getting error "The application X (process X.X) has stopped un

Re: [mono-android] Honeycomb Emulator and "Hello World"

2011-09-21 Thread Mike Child
Try this suggestion that Jonathan Pryor said in a previous posting. Mono for Android provides two runtimes (VS: Project Properties > Application tab > Supported architectures), armeabi and armeabi-v7a. The armeabi architecture is for ARMv5, which has no notion of multi-procesor support. The arme

[mono-android] Shared code, not UI

2011-09-21 Thread Kevin Galligan
The bulk of our business these days is Android ports of iOS apps. There are many "cross platform" solutions, but they all tend to be a pain and don't really work as well as one would hope. What I've been trying to do is find a cross platform solution that would simply be a shared code block. Like

Re: [mono-android] Honeycomb Emulator and "Hello World"

2011-09-21 Thread Dan Ransom
I've tried that. I turned on v7 by checking the "armeabi-v7a" setting in the Application tab of the project properties. I left "armeabi" checked. But now I get this build error: monodroid : error 1: System.InvalidOperationException: Unsupported configuration: Could not load resource 'libmono-a

[mono-android] How to set the application name

2011-09-21 Thread Agarwal, Tushar
Hi, I have develop many applications for Android using Java. Now I am starting to develop applications for Android using Mono. Can someone guide me how to set the application name which appears in the launcher? As of now, it is same as that of the main activity. I want both of them to be differ

Re: [mono-android] Shared code, not UI

2011-09-21 Thread Gabe Codina
This is exactly where we are looking at Monodroid/touch and as far as I see that is exactly the solution provided by xamarin. -Original Message- From: monodroid-boun...@lists.ximian.com [mailto:monodroid-boun...@lists.ximian.com] On Behalf Of Kevin Galligan Sent: Thursday, 22 September 201

Re: [mono-android] Shared code, not UI

2011-09-21 Thread Karl Heinz Brehme Arredondo
I copied .cs files from compact framework 2.0 (Windows Mobile 6.x) to iOS and then to Android and all was ok. Of course there is some issues like on Windows Mobile I had SQL Mobile 2005 native and RDA (Remote Data Access) and on iOS and Android is Sqlite.. Só, with some extensions, inheritance and

Re: [mono-android] Shared code, not UI

2011-09-21 Thread Sam Lippert
I'd really suggest that you guys look into MonoCross: http://code.google.com/p/monocross/ It provides a MVC pattern that works well with MonoTouch and Mono for Android, and allows you to share your business logic between them while writing concrete Views specific to iOS or Android. If you're wri

Re: [mono-android] Shared code, not UI

2011-09-21 Thread Jonathan Pryor
On Sep 21, 2011, at 3:26 PM, Kevin Galligan wrote: > 1) Is this possible? Specifically, starting up and calling into a mono > runtime on Android or iOS (and possibly windows phone in the future, although > you might simply able to use a library there) Mono won't run on WP7 (nor native code of a

Re: [mono-android] How to set the application name

2011-09-21 Thread Miljenko Cvjetko
Hi On 2011.09.21 22:11, Agarwal, Tushar wrote: Hi, I have develop many applications for Android using Java. Now I am starting to develop applications for Android using Mono. Can someone guide me how to set the application name which appears in the launcher? As of now, it is same as that of t

Re: [mono-android] How to set the application name

2011-09-21 Thread Agarwal, Tushar
Hi, I did that - applied attributes to the Activity class. The problem lies, that I need the name of the application (as seen in the launcher) to be different from the label of the Main Activity. Regards, Tushar From: Miljenko Cvjetko To: monodroid@lists.ximian.com Sent: Thursday, 22 September

Re: [mono-android] How to set the application name

2011-09-21 Thread Miljenko Cvjetko
Sorry my bad didn't read everything well... Accordin to http://developer.android.com/guide/topics/manifest/application-element.html there are application name and logo attributes in androidmanifest.xml android:name The fully qualified name of an Application subclass implemented for the applic