Unable to create Context3D on Android 5.0 when using latest Air 15 SDK
I have updated my Nexus 5 to the latest developer preview of Lollipop, and I can no longer run our game.
The same code worked find in the prev. developer version of Android L.
The code I can't get to work is:
stage.stage3Ds[0].addEventListener(Event.CONTEXT3D_CREATE, function(e:Event):void { trace("worked"); });
stage.stage3Ds[0].addEventListener(ErrorEvent.ERROR, function (e:Event):void { trace("failed" + e); });
stage.stage3Ds[0].requestContext3D();
It just fails with the error
[trace] failed[ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Error #3702: Context3D not available." errorID=3702]
I have already create a bug report (Bug#3841130 - Stage3D fails to create context on Nexus 5 running Android 5.0), but would like to know if it's happening to anybody else, or it's just my device that's messed up (I only have access to one Android L device).
