Re: [mono-android] Update 4.2.8 Broke Activation

2012-11-10 Thread Vladimir Dimitrov
Any news on that? I got to almost the same point. I use Windows 7 64 bit with Mono for Android 4.2.7. I just got a screen that I am running an evaluation version of Mono for Android and can only deploy to emulators, and I activated it a few days ago, and recycled the old activation on my old l

[mono-android] NavigationDrawer on Android 2.3

2013-10-04 Thread Vladimir Dimitrov
Hey guys, did someone got a working NavigationDrawer with and older version of Android? My problem is that I have to communicate with ActionBar which is available through the Mono.Anroid.Support.v7 which does not exist afaik. I tried with the SherlockActionBar but it uses it's own version of

Re: [mono-android] NavigationDrawer on Android 2.3

2013-10-04 Thread Vladimir Dimitrov
-binding there are instructions in the readme but you need to use the revision 18 version of the v4 support library from the component store and you need to build the v7-appcompat library in eclipse first. Cheers, Jared On Sat, Oct 5, 2013 at 5:02 AM, Vladimir Dimitrov mailto:vlad.dimit...

Re: [mono-android] NavigationDrawer on Android 2.3

2013-10-04 Thread Vladimir Dimitrov
t library from the component store and you need to build the v7-appcompat library in eclipse first. Cheers, Jared On Sat, Oct 5, 2013 at 5:02 AM, Vladimir Dimitrov mailto:vlad.dimit...@gmail.com>> wrote: Hey guys, did someone got a working NavigationDrawer with and older ve

[mono-android] Building a package with a jar bindings library strips the jar file from the assembly

2013-11-26 Thread Vladimir Dimitrov
Hello, I am trying to make a jar bindings project that I need in my app. 1. I created a jar binding project. 2. Added the .jar file in the Jars folder. 3. Made it an EmbeddedJar 4. Build the project 5. Referenced the project from another project and added some logic using the callable wrappers.

Re: [mono-android] Building a package with a jar bindings library strips the jar file from the assembly

2013-11-28 Thread Vladimir Dimitrov
So after looking at the classes.dex it turns out that this library types are not in there. Having in mind that this mean that "that's a problem. :-)" what should be done to fix this problem? On 26.11.2013 г. 16:14 ч., Jonathan Pryor wrote: On Nov 26, 2013, at 8:27 AM, Vladimir

Re: [mono-android] Building a package with a jar bindings library strips the jar file from the assembly

2013-12-02 Thread Vladimir Dimitrov
wrong, but the project is pretty empty with only the jar file inside so I don't see what I can do wrong here. - Vladimir On 1.12.2013 г. 23:49 ч., Jonathan Pryor wrote: On Nov 28, 2013, at 11:29 AM, Vladimir Dimitrov wrote: So after looking at the classes.dex it turns out that this library

Re: [mono-android] Android devices with Barcode-scanner Hardware

2014-03-11 Thread Vladimir Dimitrov
In most cases barcode scanners emulate keyboard strokes. In this case you just have to handle the input an in some cases (depending on the model and settings) remove a suffix and/or prefix. Bluetooth scanners usually work the same (as a BT keybard) and in some cases they emulate serial pirt via blu

[mono-android] Problem with SQLite and a managed code function

2014-04-04 Thread Vladimir Dimitrov
Hello guys, I am hitting a pretty strange problem right now. Since SQLite does not support regular expressions I added a custom function with the following declaration: [SqliteFunction (Name = "REGEXP", Arguments = 2, FuncType = FunctionType.Scalar)] public class RegexpFunction : Sq

Re: [mono-android] Problem with SQLite and a managed code function

2014-04-05 Thread Vladimir Dimitrov
. The question still have is why was everything working in debug mode while the support for x86 was turned off? On 4.4.2014 г. 20:49 ч., Jonathan Pryor wrote: On Apr 4, 2014, at 12:54 PM, Vladimir Dimitrov wrote: The problem gets even stranger as if I run the code in debug mode then everything

Re: [mono-android] Problem with SQLite and a managed code function

2014-04-06 Thread Vladimir Dimitrov
Maybe it is worth thinking about that case as other users may experience the same runtime problems in production with their clients while everything seems to work in debug mode. On 6.4.2014 г. 00:32 ч., Jonathan Pryor wrote: On Apr 5, 2014, at 4:50 PM, Vladimir Dimitrov wrote: The question

[mono-android] Visual Studio 2013 with Xamarin Android hangs on Preparing solution

2015-01-19 Thread Vladimir Dimitrov
Hey guys, I was using an old version of Xamarin for Android (3.6) and everything was working OK. I decided to upgrade as I was seeing the notifications about new versions and Visual Studio just hangs on Preparing solution. The version I tried is the current stable version (3.9.236.0). I tried

Re: [mono-android] Visual Studio 2013 with Xamarin Android hangs on Preparing solution

2015-01-19 Thread Vladimir Dimitrov
I just confirmed 3.6.262 to be the last version that works OK. 3.7+ all hang. On 19.1.2015 г. 19:24 ч., Vladimir Dimitrov wrote: Hey guys, I was using an old version of Xamarin for Android (3.6) and everything was working OK. I decided to upgrade as I was seeing the notifications about new

[mono-android] AutoResetEvent present?

2011-09-16 Thread Vladimir Dimitrov
Hello guys, I am trying to create an app for Android and I am still evaluating Monoandroid for that purpose and I really would like to reuse the ton of C# code we have already created. So I hit a point where I get an error while trying to build and deploy my app to the emulator. I get this:

Re: [mono-android] AutoResetEvent present?

2011-09-16 Thread Vladimir Dimitrov
amp; assemblies) [0x0] in :0 at Monodroid.Droidinator.CreateApk () [0x0] in :0 at Monodroid.MainClass.Main (System.String[] argv) [0x0] in :0 Done Building Project "E:\Projects\Work\Warehouse\IncoDroid\IncoDroid.csproj" (SignAndroidPackage target(s)) -- FAILED.

[mono-android] Linker problems

2011-09-19 Thread Vladimir Dimitrov
I am still evaluating the monodroid and so far I managed to work around most problems but there is something with the linker that is causing types that I don't refer directly but instead create using reflection to fail. The problem seems to be that the linker is simply not including them in the res

Re: [mono-android] Linker problems

2011-09-19 Thread Vladimir Dimitrov
To: Discussions related to Mono for Android Subject: Re: [mono-android] Linker problems You can use the Preserve attribute to tell the linker not to remove something: http://android.xamarin.com/Documentation/Linking On Mon, Sep 19, 2011 at 7:26 AM, Vladimir Dimitrov wrote: I am still

[mono-android] Using MySQL Connector

2011-12-08 Thread Vladimir Dimitrov
Hey guys, I am trying to figure out what is the best way to connect to a MySQL server from the Mono Android app I am creating. I had mixed success before. I am experimenting with the mysql.data.cf.dll version of the connector which is trimmed down version for Pocket PCs, so it gets less depende

Re: [mono-android] Using MySQL Connector

2011-12-08 Thread Vladimir Dimitrov
tps://webmail.catapultsystems.com/owa/UrlBlockedError.aspx> www.catapultsystems.com CATAPULT SYSTEMS INC. THE MICROSOFT CONSULTING COMPANY _ From: monodroid-boun...@lists.ximian.com [monodroid-boun...@lists.ximian.com] on behalf of Vladimir Dimitrov [vlad.dimit...@gmail.com] Sent: Thursday, December 08,

Re: [mono-android] Using MySQL Connector

2011-12-08 Thread Vladimir Dimitrov
, December 08, 2011 6:00 PM To: Discussions related to Mono for Android Subject: Re: [mono-android] Using MySQL Connector On Dec 8, 2011, at 7:49 AM, Vladimir Dimitrov wrote: > I am experimenting with the mysql.data.cf.dll version of the connector which is trimmed down version for Pocket PCs, Are

Re: [mono-android] Supported architectures? armeabi-v7a

2011-12-12 Thread Vladimir Dimitrov
So does this mean that we should always enable armeabi-v7a in cases when we use a lot of multi threading and floating point operations? I guess the trade off in this case is that if we include both there will be a bigger .apk as a result? Anything else? - Vladimir -Original Message- From

Re: [mono-android] Supported architectures? armeabi-v7a

2011-12-13 Thread Vladimir Dimitrov
AM To: Discussions related to Mono for Android Subject: Re: [mono-android] Supported architectures? armeabi-v7a On Dec 12, 2011, at 5:24 PM, Vladimir Dimitrov wrote: > So does this mean that we should always enable armeabi-v7a in cases when we use a lot of multi threading and floating po

Re: [mono-android] Sending information to a MySQL server from an android app

2011-12-14 Thread Vladimir Dimitrov
Hello, Most of the people here will advise you to stay away from the connector. But at that point I have used the compact framework version of it without any problems. It has no specific dependences (mscorlib, System and System.Data) and works fine for me. Just make sure you add -linkskip (http://

Re: [mono-android] Free version: Emulator only? ... Bye bye

2011-12-22 Thread Vladimir Dimitrov
I see your frustration as a user of this system. I have tried the mono android version on the emulator too and it had horrible performance. Debugging was useless. Everything was crashing and so on. But what you have to get with the evaluation version is not that you can test everything, but the ov