[mono-android] Application not installed message (Missing Shared Library)

2012-07-21 Thread NCSoftware
Hello, I am working on a new update to my app and added google map support. I added a reference to the Mono.Android.GoogleMaps assembly. All works great, tested good on my Droid X device so I sent the .apk to beta testers. I then tried to install on my Kindle Fire (allowed unknown sources) and

[mono-android] Deployment Issue - Nexus 7

2012-07-21 Thread joepro
Hi, I created a very basic Hello World app and can successfully deploy it to a VM. The first time I deploy it to a new VM, it installs the mono runtime and api level, but not subsequent times. This works great. However, when I deploy to my Nexus 7, it doesn't behave the same way. The first first

Re: [mono-android] Memory leak

2012-07-21 Thread Terry151151
Found my memory leak. It came from Sqlite Cursors not being closed. I discovered that when using Sqlite Cursors you should always use the following construct: ICursor C = SomeFunction(); using( C ) { try { ... ... Do Something with the Cursor