Acknowledged
CIQQA-3762

bug / easter egg?: keyboard displayed after glance crash

in SDK 8.3.0 in fr955, fr245 I have a glance, and (for demonstration purpose) the following code in getGlanceView:

    var a = 0;
    var b = 1 / a;

When I run the glance it crashes as expected, but the interesting thing is what's left in the simulator:

This is a functional text input something. I can move up/down, choose letters, which are added on the left, etc :) 

  • Really nothing else. Use SDK 8.3.0, add this:

        function getGlanceView() as [ GlanceView ] or [ GlanceView, GlanceViewDelegate ] or Null {
            var a = 0;
            var b = 1 / a;
            System.println("b: " + b);
            return [ new MyGlanceView() ];
        }

    in monkey.jungle:

    project.manifest = manifest.xml
    project.typecheck = 3
    project.optimization = 3z
    

    and start it in the simulator on fr245 or fr955.

    It doesn't happen in SDK 9.1.0, 8.4.1, 8.4.0

    To clarify. The text input you see in the image has nothing to do with my app. I have no code that has anything to do with what you see on the picture. All that comes from the simulator itself.

  • Can you think of any extra steps involved in reproducing this? When I crash a glance on the fr955 in the simulator it displays the name of the app instead of getting the glance view.