Flash Builder-developed iPad app freezes after loading external data

I am developing an iPad application in Flash Builder 4.6. My application stops working on the device when I download data from the amfphp gateway. The server response contains about 30 value objects. When the server answers with less data, the application works fine.

So, I think the problem is in analyzing the AMF response. Is this an iPad related policy? Can I add modifiers during packaging to avoid such a problem?

Mill

+4
source share
1 answer

The problem is already gone / resolved. AMF works great.

  • The application identifier must begin with the correct line defined in the provisioning profile!

  • Turn off debug mode. Both in mxmlc and in the get-task-allow provision.

I think the following also affects:

  • There should not be market [RemoteClass] classes with arguments in the constructor (even with default values).

  • I had code that often called NetConnection.connect. The increased interval.

+1
source

Source: https://habr.com/ru/post/1392980/


All Articles