• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

AIR 3.1.0.4880 InvokeEvent Defect

Explorer ,
Mar 15, 2012 Mar 15, 2012

Copy link to clipboard

Copied

Recently upgraded to the AIR 3.1 SDK and have run into a show stopping issue regarding InvokeEvent on mobile devices.  The application is dispatching a new InvokeEvent each and every time you change orientation on the device.  And it isn't clearing the "queuedEvents" array.  Worst of all, the new event it dispatches each time is a clone of the last one recieved.  In the case of our application, this would be parameters that tell the application to load certain data.  So each time you change orientation, the application re-triggers that load sequence, causing lots of undersirable behavior.

The code is pretty simple to test out:

protected function preinitializeHandler(event:FlexEvent):void

{

    NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE, onInvoke);

}

 

protected function onInvoke(event:InvokeEvent):void

{

    trace(event.toString());

}

Now each time you change orientation you will see the trace statement and the event.target.queuedEvents collection continues to grow while never clearing any of the previously caught events out.

Rolling back to AIR 3.0 fixes this behavior.  And I've been able to demonstrate that in two separate projects.

I'd love to hear of a fix or work around so we can release using 3.1, but either way, I thought I'd make others aware of this issue as I haven't been able to find anything about it through my searching.

Eric Jensen

TOPICS
Performance issues

Views

4.3K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 20, 2012 Mar 20, 2012

Copy link to clipboard

Copied

Just updated to the 3.2 release candidate (3.2.0.2060) and the problem remains.  Our software wont be able to update past 3.0 for the foreseeable future, which means we can't upgrade to Flex 4.6 SDK either, not without removing a significant feature of our application.  This doesn't inspire us to the future of AIR in our company.

There are a few solutions and work around we might be able to employ to fix our specific feature, but there is still a concern over the effects of having an ever ballooning invoke queue that never clears.  That could have additional issues over extended use of the application.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 20, 2012 Mar 20, 2012

Copy link to clipboard

Copied

You can try to use preventDefault() on the InvokeEvent to cancel it if you do not want it to run.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 20, 2012 Mar 20, 2012

Copy link to clipboard

Copied

The issue is we can't tell if the event being caught is a duplicate because of this issue or legitimately requested by the user.  Imagine having a mouse click handler that mis-fires when the user does various other activities that are clearly not a clicks.  The human brain can easily tell that isn't a click, but the code just knows MouseEvent.CLICK was dispatched on that item and our handlers catch it and act on it.  It doesn't have the context to know whether the user intended that event to be dispatched or not.

There are a few server-side changes we will be making to help with this specific issue, such as adding a time stamp to each invocation request.  Then we can compare if the cloned event has a newer timestamp or not.  If not, we ignore it.  The solution isn't perfect and still has some usability issues regarding stale URLs that could be legitimately used, but it would solve the issue to some satisfaction.

However, that doesn't solve the underlying issue of the invoke queue constantly growing as you try to use the application.  Each time you rotate the application it will try to process this queue.  Even if we found work arounds for each individual feature we need InvokeEvent for, the application dispatching the InvokeEvent each and every time you change orientation will continue to cause issues.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 21, 2012 Mar 21, 2012

Copy link to clipboard

Copied

Replying to LinkedIn group thread: http://lnkd.in/bzF36F

You are right that I could have and probably should have provided a lot more details, but the issue is very easily reproduced by the small code samples provided.  I'll spend an hour or so going through the process in much greater detail though.

Flex SDK isn't related, nor is Apache Flex.  I almost didn't post to the group because of this and I've made comments specifically about why I posted and it wasn't for a Stackoverflow replacement.  However, AIR SDK is related and the issue details demonstrates that.  InvokeEvent works as documented in AIR 3.0 SDK, but not in 3.1 or 3.2, regardless of run-time.  It doesn't happen on iOS devices because iOS doesn't include the AIR run-time at all, unlike Android.  And all but one Android device shows this behavior.  I'm not sure why my LG Slate is exempt though.  I really can't explain that.

queueEvents isn't in the docs because it is a private variable that you can only see via debugging.  If it was protected or public then I could work with it directly to clear it out, if that would even resolve the issue.

Now, onto the details.

For our application we are utilizing InvokeEvent to jump to specific content based on a registered URL.  In the mobile manifest.xml files you can register a custom protocol for your application to catch, much like iTunes.

<intent-filter>

    <data android:scheme="flrreader" android:host="*"/>

</intent-filter>

Now if you were to click on URL in your browser that looked like: flrreader://open?url=myBookUrl, then AIR will dispatch an InvokeEvent with the "arguments" array populated with the first element being the full custom URL: "flrrreader://open?url=myBookUrl".  We can then watch for this, parse it, and act on it.

When building against AIR 3.0 SDK running on AIR 3.0, AIR 3.1, or AIR 3.2 run-times we see the following behavior:

1. The application launches and onInvoke is triggered with an empty argument array, so we don't act on it.

2. Switch to browser and click button that calls custom URL

3. onInvoke is hit with the event.arguments having 1 element, which is our full URL string.

4. event.target is NativeApplication and it's private queuedEvents property has 2 elements.  The first elements is a generic InvokeEvent with no arguments.  The second element is an InvokeEvent which has the same arguments as the one we caught.  It is not the same event, however.  Their identifiers are unique, so there is cloning taking place at some point.

5. Processing our URL has us launch right into the requested book.  We exit the book and return to the book list. 

6. We then rotate the tablet, changing orientation.  Views change as expected.  onInvoke is not called again, as you would expect.

7. Switch to browser, click on URL again, onInvoke is triggered with arguments populated.

8.  queueEvents now has 3 entries.

Now we change to build against AIR 3.1 SDK or AIR 3.2 SDK.  Not other changes are made.  Flex SDK and AIR run-times remain the same on all devices.

1-5. Remains the same as above

6. We rotate the tablet, changing orientation.  onInvoke is immediately triggered with a new InvokeEvent that has our last arguments on it. Since the arguments exist, we act on them an launch you into the book.

7. queuedEvents now has 3 entries, as if we clicked on the URL from the browser again.

Each time you change orientation you repeat 6 and 7.  These events aren't references, they are all unique.  If I clear event.arguments in the handler, the next onInvoke call still has arguments.  If I clear queuedEvents or update events inside  queuedEvents (which can only be done via debugger, as it is private to NativeApplication), the next onInvoke still has the arguments as if we were triggered via the custom URL.

Even without the URL registration you can see this behavior.  Just added the listener in the original code sample you can see it trigger each and every time you change orientation with the queuedEvents growing.  And this only occurs when building against AIR 3.1 and above with the devices run-time remaining the same.

You are right in that I have some ignorance here.  I don't really know what is happening in as much detail as I would like, hence the posting for aid.  But I've done enough due diligence to show that there is significant behavior changes simply by compiling against a different SDK.  Behavior that seems flawed to me.  InvokeEvents shouldn't be dispatched each time you change orientation.

Now, maybe this is an intentional change and it is behaving the way it should and AIR 3.0 and previous was flawed.  If that's the case, then it would be nice to hear the details and reasoning for the change as well as how to handle this new behavior.  When I read through the InvokeEvent documentation I didn't get the impression that this was the case, however.

As for our server-side solution, I would rather resolve this on the client, but we do what we must to get things working.  The only solution I can see to this problem is for us to add a unique identifier, such as a time stamp to the custom URL and then keep track of that when we hit on InvokeEvent handler.  If future InvokeEvent calls have an identical identifier then we know it is an unintentional dupe and we can ignore it.  This causes some usability issues and is less than ideal (e.g. we have to refresh the page/link after you click the link to make sure it isn't stale for the next time you want to click it).

Hopefully these details clear some things up.  I should have gone into this level of detail from the start, but I thought the sample code and brief description replicated the issue quite easily and I figured if somebody had ran into this issue before it would be enough to start a productive conversation about it.  I apoligize for the confusing and unproductive conversation my lack of details caused.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Mar 21, 2012 Mar 21, 2012

Copy link to clipboard

Copied

Hi Eric,

Thank you for the additional information.  I think the best thing to do at this point is to add this to bugbase.adobe.com (if you haven't done so already.)  A couple of things I'd recommend.  First, please include a sample project so we can quickly verify the behavior.  Second, I'd recommend stressing at the top of the bug that this is an injected issue with AIR 3.1, it does not occur with AIR 3.0.  Finally, please post back with the bug URL so I can follow up internally.

Thanks,

Chris

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 22, 2012 Mar 22, 2012

Copy link to clipboard

Copied

Chris,

Thanks for the response.  I've created the bug, which can be found here: https://bugbase.adobe.com/index.cfm?event=bug&id=3144722.  Let me know if it needs additional details.  I tried to keep it straight to the point.  I also included additional testing I did to narrow it down to Android 3.2.x devices.  The ticket has an attached project to demonstrate the issue, which also includes 2 pre-built Android packages for AIR 3.0 and AIR 3.1.

Eric

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Apr 18, 2012 Apr 18, 2012

Copy link to clipboard

Copied

I have the same problem on Galaxy Nexus but not on Galaxy S, a solution ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 19, 2012 Apr 19, 2012

Copy link to clipboard

Copied

I submitted a defect, but haven't heard any updates on it.  You might want to comment on it and mention the mobile Android versions you've found it does or doesn't work on.  My app was only for tablets, so that's what my test data focused on.

The only work around I can think of would be to add a GUID or timestamp to the URLs so the InvokeEvent handler can test to see if future invokes are duplicates or not.  You just have to make sure that whatever generates the URLs will never legitimately re-send a stale GUID/stamp.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 21, 2012 Apr 21, 2012

Copy link to clipboard

Copied

Hi,

I have the same problem on my Asus Transformer TF101 with ICS 4.0.3 with AIR 3.1, AIR3.2 and AIR 3.3 (beta3).

Philippe

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Apr 23, 2012 Apr 23, 2012

Copy link to clipboard

Copied

I'd like to ask everyone affected by this issue to take a minute and vote for the following bug.  It currently has zero votes:

https://bugbase.adobe.com/index.cfm?event=bug&id=3144722

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Sep 23, 2012 Sep 23, 2012

Copy link to clipboard

Copied

I have an another bug with Air 3.4 on Android on Galaxy nexus

Recently upgraded to the AIR 3.4 SDK and have run into a show stopping issue regarding InvokeEvent on mobile devices.  The application is dispatching a new InvokeEvent each and every time you stop the application with NativeApplication.nativeApplication.exit() and launch application with the multitasking button, not with the application icon, it isn't clearing the "queuedEvents" array,  the new event it dispatches each time.

In the case of our application, this would be parameters that tell the application to load certain data.  So each time you change lauch application, the application re-triggers that load sequence, causing lots of undersirable behavior.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Sep 26, 2012 Sep 26, 2012

Copy link to clipboard

Copied

@pol2095 - Have you entered your bug into bugbase.adobe.com?  If so, do you have a bug number handy?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Sep 27, 2012 Sep 27, 2012

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Sep 27, 2012 Sep 27, 2012

Copy link to clipboard

Copied

LATEST

It isn't a bug, it's the default behavior for android.

<activity android:launchMode="singleTop">

          <intent-filter>

                    <action android:name="android.intent.action.MAIN"/>

                    <category android:name="android.intent.category.LAUNCHER"/>

          </intent-filter>

          <intent-filter>

                    <action android:name="android.intent.action.VIEW"/>

                    <category android:name="android.intent.category.BROWSABLE"/>

                    <category android:name="android.intent.category.DEFAULT"/>

                    <data android:scheme="mycustomuri"/>

          </intent-filter>

</activity>

the solution is to add android:launchMode="singleTop" in the application descriptor

How to remove the bug report at bugbase.adobe.com ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines