1
vote
0answers
47 views

Building mono with android ndk standalone toolchain (android ndk r8e)

I'm attempting to build mono using the ndk standalone toolchain from the android ndk (version r8e), but I am unable to complete the build. I setup my standalone environment like so: export ...
1
vote
1answer
73 views

Unable to build SignalR.Android because of missing System.Net.Http

I'm trying to use SignalR in my MonoDroid project. So I downloaded DEV branch from https://github.com/SignalR/SignalR/tree/dev and when I open solution for Android, it is not possible to build it, ...
1
vote
2answers
151 views

Using Xamarin (Mono C#) and .Net to generate the same key

I am trying to get the user to enter a pin and then use a formula to create a time sensitive String. I.E. if you call the function one minute later the string will be completely different. I then take ...
3
votes
1answer
47 views

differences in implementing an interface on Windows, MonoForAndroid, and MonoTouch

I am porting some old code that I have on Windows Mobile. The code compiles fine for .NET 3.5 CE. I created a project in MonoForAndroid and referenced the same code (.cs files refereneced as Links) ...
0
votes
0answers
29 views

System.ServiceModel.dll v4 in Monodroid

I want to System.ServiceModel.dll v4.0 yet when I try to add a reference in a monodroid application I only System.ServiceModel.dll v2.0.5 that does not contain . Is it possible to use this 4.0 ...
0
votes
0answers
71 views

HttpWebRequest MOVE returns 404

I use WebRequest.UploadData() to create a file on a WebDAV server (with Mono for Android) as described in my question Alternative to WebClient.OpenWrite. After the upload, I want to rename the file. ...
0
votes
2answers
124 views

SocketException for closing a UDP Socket

I have a library written in C# which I have used it in WP7/iOS/Windows Apps. It works with Mono because I am just using UdpClient and nothing more. Its an open source library to find peers ...
1
vote
1answer
190 views

GetResponse running in Task.Factory.StartNew

I want a webrequest running in a background thread, and then for the callback to be handled in the UI thread. Here is my code: Task.Factory.StartNew(() => { ...
0
votes
0answers
143 views

Alternative to WebClient.OpenWrite

As described in my question from yesterday there seems to be a bug in Mono for Android's WebClient.OpenWrite method. This method is meant to return a Stream which allows writing to a location on a ...
0
votes
0answers
63 views

Enabling Portrait and PortraitReverse Only on MonoForAndroid App

I can see this just as simple as specifying an attribute to the Activity and that is what I am doing, but I think there is a bug in Mono For Android around this. This is my code ...
0
votes
1answer
468 views

SetOnClickListener in ListView

Good morning, I implemented a listView that has some information that is hidden, and a button, however I am having trouble with the click event of the button, I'm using MonoDroid, I implemented the ...
1
vote
0answers
105 views

MonoDroid: Fails to load referenced assembly because of a subreference

I am trying to bind some Jars into my MonoDroid project. I have succesfully managed to build the Java Binding Library so far, but when I reference the project from the Application Project, the Java ...
0
votes
0answers
124 views

sending emails with a custom email adress without getting password in monodroid

I use mono-droid to developing android applications. I wanna send an email form witch email address that user want to a specific email address without getting the password from user. i had done it ...
1
vote
1answer
328 views

Method not found: 'System.Type.op_Equality'

I'm getting this error System.MissingMethodException: Method not found: 'System.Type.op_Equality'. When running a build. (likely because I'm on the Android simulator, and the JIT is catching it.) ...
2
votes
0answers
421 views

Unable to reference XNA project for MonoGame Android

I have an XNA project that I'm trying to port over to Android using MonoGame, but I get the following errors: When I add a project reference my XNA game I get, "The Target Framework version for the ...
0
votes
1answer
259 views

How to create a db3 database with Sqlite-Net

In a mono project I want to create a database and use that, and Sqlite-Net is optimzied for mono so would go with that. But I cant find any documentation how to create a database with it. So I just ...
7
votes
3answers
391 views

'System.ComponentModel.DataAnnotations.dll' available for Android and iOS?

I got the the attached error message when tried to compile VelocityDB for android. As VelocityDB support said it really needs the data annotations. Is the referred ...
0
votes
1answer
79 views

Upgrade of a multi-tier application to new technologies [closed]

around 10 years ago I developed a software for handhelds to be used in hospitals. The handheld software communicates via wi-fi to my server software, than in turn connected to various data ...
4
votes
1answer
590 views

Mono for Android Project not working with libraries that target .NET framework 4

I'm using Mono for Android to create a Android application that uses a large number of class libraries already developed. When I add the project as a reference to the android application, I get a ...
1
vote
2answers
330 views

Project reference vs. file links in Mono multi-target projects

I've seen a few discussions regarding this issue, but I've yet to see clear-cut answers, certainly not for MonoTouch / Mono for Android. I'm developing a Xamarin-based multi-target solution and ...
0
votes
0answers
116 views

Socket.RemoteEndPoint different behavior in mono

I'm trying to migrate my app to android in order to cut costs. Problem is that a main part of my app is based on tcp sockets, which behaves kind of differently under mono. [i'm using Xamarine's ".NET ...
0
votes
2answers
269 views

Cross-Platform Game Development between Android and PC? [closed]

I was hoping to utilize MonoDroid from Xamarin and build a very simple 2D platformer that could run on both Android and the PC. Coming from PC, I know that certain libraries are better than others ...
1
vote
2answers
285 views

MonoGame - Android SamplerState.LinearWrap

We use SamplerState.LinearWrap to tile alot of things in our game. Our game shares a single SpriteBatch object, and calls Begin() like this: _spriteBatch.Begin(SpriteSortMode.Deferred, ...
1
vote
0answers
147 views

Error MSB4018: The “ResolveSdks” monodevelop

i had the following error in monodevelop: C:\Program Files (x86)\MSBuild\Novell\Novell.MonoDroid.Common.targets(2,2): Error MSB4018: The "ResolveSdks" task failed unexpectedly. ...
2
votes
2answers
113 views

Math class in multithreading gives errors

I am using such code in multithreading: Old example: class All { object lockAll = new object(); public All () { lock(lockAll) { ...
1
vote
1answer
88 views

How do I recompile an assembly targeting the MonoTouch profile?

On http://docs.xamarin.com/ios/about/assemblies it says that if I want to provide my code as an assembly to other MonoTouch developers: "You must recompile your source code to generate assemblies ...
1
vote
2answers
181 views

Common library for monodroid and desktop applications

I am currently starting a project which I would like to develop both a Android and desktop app for using mono for android. I would like to encapsulate the common logic into a shared library but at ...
3
votes
2answers
234 views

How to find out if my assembly can be used by Mono, MonoTouch, MonoDroid?

I am brand new to Mono. I have a .NET Framework 3.5 assembly and I want to know if I can use it with mono. Specifically: Do I need to compile my .NET Project with Mono or will Mono run my .NET ...
0
votes
2answers
322 views

MonoDroid - Threading Anomaly in StartService

I'm asking this to gain deeper insight into the bowls of Mono for Android, and to be better prepared down the road when supporting my mobile app... I noticed that when calling StartService from a ...
6
votes
4answers
406 views

.NET error handling: try/catch VS event VS return-value/status-fields

I'm at a very crucial cross road in my cross-platform mobile app development right now and could really use some expertise (like woah). To give some context (which may help in answering I hope), I'm ...
0
votes
1answer
141 views

MonoDroid Activity Independent Task Queue?

I have a Monodroid application that does many webrequests. I am making requests from activities. Because of this I have the need for a queue to process my requests outside of my activities. This is to ...
2
votes
1answer
343 views

Monodroid obfuscate

I have developed a monodroid application and I want to know the best way to obfuscate the app. I tried obfuscating Dll files with net obfuscators like dotfuscator and xenocode without success. I put ...
0
votes
1answer
319 views

How to properly subclass SeekBar in MonoDroid?

I'm currently having a issue with the SeekBar class in MonoDroid. Currently I have extended it like this: public class TTSeekBar : SeekBar, ITTComponent { public TTSeekBar(Context ...
2
votes
1answer
452 views

MonoDroid ObjectDisposedException when loading XDocument for RSS

I'm fiddling with MonoDroid (aka Mono for Android) trying to build a simple podcast downloading app, currently just testing out retrieval of an RSS feed contents. My simple app is: an edit text ...
3
votes
1answer
391 views

MonoTouch App to Mono Android

I am new to Mono and my first Question is, if it´s possible to create an App in Monotouch and then build it for iOS, Android and Windows Phone?! What i mean is, can i have one source code?!
2
votes
1answer
910 views

monodroid exception while loading assemblies -> Could not load assembly System.Net

I've got a small assembly with some business-functionality (calling an webservice an reciving some data and give the data back in a list). This assembly was developed and compiled with visual studio. ...
0
votes
0answers
163 views

Caching object graphs in monotouch / monodroid

I need to cache processed object graphs on the mobile client using monodroid and monotouch and looking for a high performance solution. Based on the research I have done so far siaqodb (link) seems ...
0
votes
3answers
567 views

PortableDLL in MonoTouch and MonoDroid

Can you share .NET DLLs (written in VB.NET using Visual Studio) between Full.NET, WindowsPhone, Silverlight, MonoTouch, MonoDroid. (And in Future also WinRT) Is this possible? I'm not looking to ...
0
votes
1answer
688 views

Android application does not works: "The xx.xx application (xx.xx process) stopped unexpectedly. Try again

Well, I'm getting started in applications android development, as I'm familiar with C#.NET(and I love it), I decided to use the fantastic MonoDroid project. I downloaed and installed,worked fine until ...
2
votes
1answer
2k views

Mono for Android - How to speed up debugging?

I am using Mono for Android and I a like it so far. My only concern is that debugging projects is very slow. When I start debugging in Visual Studio sometimes it takes 4-5 seconds to move from one ...
0
votes
2answers
325 views

MonoDroid net.Sockets

im trying to build an android app which uses .net.sockets to conenct to a server and send/receive data from this. The sending of data works fine, however when receiving it gives me an argument out of ...
0
votes
0answers
113 views

WF .NET app on Android and other mobile platforms

I have C# application with Windows Workflow Foundation functionality. Is it possible to use the WF rules created by desktop application at mobile application with Monodroid or alike frameworks? I ...
4
votes
1answer
2k views

access to full resolution pictures from camera with MonoDroid

I'm trying to find a way to access full resolution pictures from MonoDroid, after a long time of attempting to port the Java examples to MonoDroid and looking at how for others seem to have gotten, i ...
11
votes
4answers
7k views

Mono for iOS/Android Open or Closed? Paid or Free?

I am attempting to learn more about mobile/tablet development and, as a .NET developer, I am naturally drawn to Mono. But I am confused--I thought that Mono was free and open source; however, all ...
1
vote
1answer
266 views

Mono for Android - ExapandableListView

Does Mono for Android support ExpandableListView? If so, is there an example of this where the selected item is available as a CLR type? Clarification: I have looked into implementing this, yet we ...
21
votes
7answers
26k views

Monodroid Free Alternative? (.NET on Android)

I have some complex C# libraries I want to be able to use on Android, and whilst searching for .NET on android, I stumbled across MonoDroid. It seemed fine and dandy until I saw the price, which was ...
0
votes
1answer
171 views

Why I can't recieved messages from Chat Server?

Why I can't recieved messages from Chat Server ? I developed Chat Client in Visual Studio C# with mono for android. I want to receive mesagens from Chat server they are sent but he Chat Client may be ...
3
votes
2answers
1k views

Monodroid, Interop betwen Java and C#

We have a big Java application under Android ("big" just means it's too much work to translate the application). We must access to an engine written in .Net (this engine is also too "big" ...). This ...
1
vote
5answers
638 views

what is better to learn java on android or to learn to work with mono [closed]

i'am .net programmer for 10 years, now i need to work on the android. what will be better to do start learn java for android or to learn how to use mono (and work on my Visual-studio) ? if the ...
2
votes
2answers
959 views

System.Runtime.Serialization.Json in Monodroid?

I am wondering if anyone knows if I can use "System.Runtime.Serialization.Json (4.0)" in monodroid. I only see "System.Runtime.Serialization (2.0.5)" in the assemblies of monodroid. This does not ...

1 2