[mono-android] Facebook binding error

2013-04-03 Thread Randy Ficker
I just upgraded to MfA 4.6 from an older version since I needed to target Android 4.2, and I've been having trouble getting my app to work on this version. At first I received the error "Java.Lang.Object is defined in an assembly not referenced". I found this meant I needed to update all my bi

[mono-android] Shortcut disappears on every deploy

2012-05-15 Thread Randy Ficker
I upgraded to 4.2.1, and now every time I deploy my app, the app's shortcut disappears off of my home screen. I can see it disappear right when the deploy process says "Removing any previous version.." I recall this used to happen when I first started using MfA until I went into the options an

Re: [mono-android] Odd behavior when restarting app

2012-05-10 Thread Randy Ficker
SetContentView(btn); } } protected override void OnDestroy() { base.OnDestroy(); _numInstances--; } } From: Randy Ficker [mailto:randyfic...@gmail.com] Sent: Thursday, May 10, 2012 2:49 PM To: '

Re: [mono-android] Odd behavior when restarting app

2012-05-10 Thread Randy Ficker
inal Message- From: monodroid-boun...@lists.ximian.com [mailto:monodroid-boun...@lists.ximian.com] On Behalf Of Jonathan Pryor Sent: Thursday, May 10, 2012 1:08 PM To: Discussions related to Mono for Android Subject: Re: [mono-android] Odd behavior when restarting app On May 10, 2012, at 5:15 AM, Randy F

[mono-android] Odd behavior when restarting app

2012-05-10 Thread Randy Ficker
I'm encountering some strange behavior when I close and re-open my app. Let's start with a basic two-activity app: [Activity(MainLauncher = true)] public class Activity1 : Activity { protected override void OnCreate(Bundle bundle) { base.OnCreate(bun

Re: [mono-android] 4.0.5's OpenTK overhaul

2012-03-04 Thread Randy Ficker
see "call to OpenGL ES API with no current context" logged and calling MakeCurrent() or SwapBuffers() throws an InvalidOperationException in this situation. -Original Message- From: Andreia Gaita [mailto:andr...@xamarin.com] Sent: Sunday, March 04, 2012 5:37 AM To: Randy

[mono-android] 4.0.5's OpenTK overhaul

2012-03-03 Thread Randy Ficker
Hello, The release notes for 4.0.5 mention that "this release brings an overhauled OpenTK/Android backend." However, it's pretty light on the details. I'd like to hear more about what exactly is changing. I installed

Re: [mono-android] Rotating OpenGL app dies with egl.EglMakeCurrent failed: 0x3009

2011-11-05 Thread Randy Ficker
(); view.Pause (); } } -- andreia On Fri, Nov 4, 2011 at 6:21 PM, Randy Ficker wrote: > > 1. Make a fresh "Mono for Android OpenGL Application" > > 2. Deploy it to a device > > 3. Rotate the device back and forth between portrait and landscape. > > 4. Within 2

[mono-android] Rotating OpenGL app dies with egl.EglMakeCurrent failed: 0x3009

2011-11-04 Thread Randy Ficker
1. Make a fresh "Mono for Android OpenGL Application" 2. Deploy it to a device 3. Rotate the device back and forth between portrait and landscape. 4. Within 2-4 rotates, the app dies with this exception: I( 97:0x70) Setting rotation to 1, animFlags=0 I( 97:0x70) Config changed: { scale=

[mono-android] Resuming app always reverts to first activity

2011-11-02 Thread Randy Ficker
I ran a simple test: 1. Create a fresh Mono for Android project. Add a second activity, and make the button of the default activity launch the second activity. 2. Make an identical app in Eclipse using pure Java. 3. Launch the Java app, tap the button to go to the second ac