StageVideo Application Crash iOS - AIR 3.7

Hey Everyone,
Just upgraded all my projects from 3.6 to the latest 3.7 beta and I'm coming across issues with StageVideo on iOS which were not present in 3.6. I've looked everywhere for information about what may have been changed in 3.7 but nothing is noted in the release notes? Is there something I am missing?
Explanation:
Play a StageVideo (.mp4) on iPad 2,5 (6.1.2), when the video finishes the application crashes without any useful logs anywhere.
Further Details:
Here is some further information and a link to a test application I've put together.
- Flash Builder 4.7
- AIR 3.7 SDK (April 2, 2013)(overlayed on 3.6 SDK)
- Mac OS 10.8.2 development machine
- iPad Mini version 6.1.2 (10B146)
- Video Format: H.264 AAC 1024x768 Stereo 733KB
I've exported and uploaded a sample project (2MB) with the problem I've explained which includes a couple of very short videos:
http://neurocog.com.au/downloads/bugs/AdobeBugReport12.zip
I'm stumped!
Ollie.

Hi there,
I'm having the same problem. In addition I noticed that if I don't use the ns.dispose(), just ns.close(), the app dosen't crash but smotimes it plays the previous video on top of the current one. (my app is a video player)
I didn't get the part of the workarround you sugested, can you be more specifice please?
What do you mean by setting a double-ly ? Where do you put it?
As far as I understand the onPlayStatus is being called automaticly when stream is finished.
Any news from adobe yet?
Thanks,
Igal

Similar Messages

  • StageVideo application crash on mobile devices.

    Hello everyone.
    The last few months, I've been having trouble with StageVideo on selected Android devices and as of today on all iOS 7 devices.
    When I try to switch between the currently playing video and a new one, after a random number of toggles, the application crashes. With the latest update of the iOS, the maximum videos I toggle on my NetStream object is 2, which is extraordinary for a machine such as iPad 4.
    I create all the objects that are nessesary to play a video as I should and check the StageVideo availability on my device so I'm sure that this is a StageVideo issue.
    Here is some of my code:
                // Connections
                nc = new NetConnection();
                nc.connect(null);
                ns = new NetStream(nc);
                ns.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
                ns.client = this;
                // Screen
                video = new Video();
                video.smoothing = true;
                // Video Events
                // the StageVideoEvent.STAGE_VIDEO_STATE informs you if StageVideo is available or not
                stage.addEventListener(StageVideoAvailabilityEvent.STAGE_VIDEO_AVAILABILITY, onStageVideoState);
                // in case of fallback to Video, we listen to the VideoEvent.RENDER_STATE event to handle resize properly and know about the acceleration mode running
                video.addEventListener(VideoEvent.RENDER_STATE, videoStateChange);
            private function onStageVideoState(event:StageVideoAvailabilityEvent):void
                // Detect if StageVideo is available and decide what to do in toggleStageVideo
                toggleStageVideo(available = inited = (event.availability == StageVideoAvailability.AVAILABLE));
            private function toggleStageVideo(on:Boolean):void
                // If we choose StageVideo we attach the NetStream to StageVideo
                if (on)
                    stageVideoInUse = true;
                    if ( sv == null )
                        sv = stage.stageVideos[0];
                        sv.addEventListener(StageVideoEvent.RENDER_STATE, stageVideoStateChange);
                    sv.attachNetStream(ns);
                    if (classicVideoInUse)
                        // If we use StageVideo, we just remove from the display list the Video object to avoid covering the StageVideo object (always in the background)
                        stage.removeChild ( video );
                        classicVideoInUse = false;
                } else
                    // Otherwise we attach it to a Video object
                    if (stageVideoInUse)
                        stageVideoInUse = false;
                    classicVideoInUse = true;
                    video.attachNetStream(ns);
                    stage.addChildAt(video, 0);
                if ( !played )
                    played = true;
                    ns.play(_videoURL1);
    I would be grateful for any help I could get.

    Could you please open a new bug report on this over at https://bugbase.adobe.com?  When adding the bug, please include some sample code or a sample application so we can quickly test this out internally.  If you'd like to keep this private, feel free to email the attachment to me directly ([email protected]).
    Once added, please post back with the URL so that others effected can add their comments and votes.  I've also given our mobile team a heads up so they can take a look.

  • Application crashes since AIR 15 upgrade

    Our application started to crash since the upgrade was release for AIR 15.  The following is the dump from the event log:
    Faulting application name: LEED Desk Prd.exe, version: 0.0.0.0, time stamp: 0x52acef88
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x20000006
    Faulting process id: 0x1c4c
    Faulting application start time: 0x01cfd66c0e8781ec
    Faulting application path: C:\Program Files (x86)\LEED Desk Prd\LEED Desk Prd.exe
    Faulting module path: unknown
    Report Id: 19d36208-4260-11e4-bf6c-5c514fe8b5bf
    Downgrading AIR back to version 14 seems to solve the problem.  Any suggestions?

    Hi Prateek,
    Our app is experiencing a similar crash with AIR 15 (on OS X, and Windows XP / Windows 7) - the crash did not occur with AIR 14 and lower. 
    Here's a link to the bug I created for this (I see another user voted for it also):
    Bug#3825805 - App now crashes with AIR 15 on both PC & Mac, did not crash on earlier versions of AIR.
    I've been trying to find a work around but I'm not able to reproduce the crash in the IDE.  Please let me know if you have any ideas on how to debug this in the IDE and I'd be more than happy to help.

  • [iOS7] StageVideo Application Crash

    Hello,
    My application sometimes crashes when playing repeatedly MP4 with StageVideo in iOS7.
    It crashes frequently when the local MP4, but rarely occurs it happens in streaming.
    There is no problem in iOS6.
    iPhone5
    iOS 7 GM
    AIR 3.9.1.1080, AIR 3.8.0.1430, AIR 3.7.0.2090
    Test Video Format: H.264 AAC 640x360 Stereo 607KB
    test code here:
    private var _file:File;
    private var _connection:NetConnection;
    private var _stream:NetStream;
    public function init()
              _file = File.applicationDirectory.resolvePath("***.mp4");
              stage.addEventListener(MouseEvent.CLICK, _clickHandler);
    private function _clickHandler(e:MouseEvent):void
              if (_stream) {
                        _stream.dispose();
                        _connection.close();
              _connection = new NetConnection();
              _connection.connect(null);
              _stream = new NetStream(_connection);
              _stream.client = { onMetaData:function(){} };
              var stageVideos:Vector.<StageVideo> = stage.stageVideos;
              if (stageVideos.length >= 1) {
                        var stageVideo:StageVideo = stageVideos[0];
                        stageVideo.viewPort = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
                        stageVideo.attachNetStream(_stream);
              _stream.play(_file.url);
    I hope that this issue will be corrected.
    thanks.

    I'm experiencing the same problem. I have filed a bug report with adobe (#3638033)
    https://bugbase.adobe.com/index.cfm?event=bug&id=3638033

  • AIR for iOS application crash when deployed as Ad-Hoc package

    We have develop Adobe AIR application that uses Starling and Gunk DI.
    The applications works great in the simulator and when deploying it to a device from the development environment, we use IntelliJ.
    When we package the application as ad-hoc package and deploy it to iPad using TestFlight the application crash, and I mean iOS crash report, without throwing AS3 exception when we try to create any type that is derived from starling.display.Sprite using Gunk CI.
    The strange thing is that the AIR app crashes without exception.
    Thank you,
    Ido.

    Sorry, typo, I ment Gunk Dependency Injection.
    On Mon, May 26, 2014 at 1:00 AM, Anton Azarov <[email protected]>

  • AIR application with Native application crash on iOS because of numFunctionsToTest

    I wrote a simple Hello World AIR Native Extension and have implemented following context initializer
    void helloWorldContextInitializer(void* extData, const uint8_t* ctxType, FREContext ctx,
                                      uint32_t* numFunctionsToTest, const FRENamedFunction** functionsToSet)
        NSLog(@"Entering ContextInitializer");
        *functionsToSet = _methods;
        NSLog(@"Method list initialized");
        if(numFunctionsToTest != NULL)
            NSLog(@"numFunctionToTest is not null");
            *numFunctionsToTest = (uint32_t)2;
        NSLog(@"Exiting ContextInitializer");
    My Application crash on iOS device with following message in console.
    Dec 29 15:58:41 unknown HelloWorld[24298] <Warning>: Entering ContextInitializer
    Dec 29 15:58:41 unknown HelloWorld[24298] <Warning>: Method list initialized
    Dec 29 15:58:41 unknown HelloWorld[24298] <Warning>: numFunctionToTest is not null
    Dec 29 15:58:42 unknown ReportCrash[24302] <Notice>: Formulating crash report for process HelloWorld[24298]
    Dec 29 15:58:42 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:org.divy.contactmanagement[0x5c0]) Job appears to have crashed: Bus error: 10
    Dec 29 15:58:42 unknown SpringBoard[15] <Warning>: Application 'HelloWorld' exited abnormally with signal 10: Bus error: 10
    Dec 29 15:58:43 unknown ReportCrash[24302] <Error>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/
    It seems line following line is cause of the problem.
    *numFunctionsToTest = (uint32_t)2;
    modified the line to *numFunctionsToTest = 2; still no luck.
    It seem the pointer is pointing is not correct.
    Following is the Device log if it helps.
    Incident Identifier: 650833B2-9F2E-4186-B499-29C9088EBD66
    CrashReporter Key:   f559e8609ce49e196f1137a3c1c7d27b40377472
    Hardware Model:      iPhone3,1
    Process:         HelloWorld [24065]
    Path:            /var/mobile/Applications/35BEA219-A5DF-48BB-8602-228EB8AF3D61/HelloWorld.app/HelloWorld
    Identifier:      HelloWorld
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2011-12-29 14:36:08.226 -0800
    OS Version:      iPhone OS 5.0.1 (9A405)
    Report Version:  104
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x011c6d85
    Crashed Thread:  0

    It was my mistake in configuration of extension.xml file. Instead of mentioning Extesion Initialization funtion i was using context initialization funtions there. It started working after correcting this problem.
    Thanks for all the help.

  • Application crashes on IOS 5.1 (tried Adhoc export release build)

    Application crashes on IOS 5.1 in splash screen. It works fine with fast debugging and standard debugging.But when i tried to test in as ADHOC release build it got crashed.
    Device: Ipad 2 - IOS 5.5
    Air: Air 3.3 beta 2
    Flex sdk: 4.6
    -Saravanan.

    I encountered the same problem too.
    In addition, it works fine in AIR3.2.
    This is a diagnostic log.
    Incident Identifier: 8693E907-C4AE-46AE-AF30-E98AEA1ADA44
    CrashReporter Key:   8101529d3f4d03f26f21d6e690865577754d76ae
    Hardware Model:      iPad2,1
    Process:         DrawCASE [10057]
    Path:            /var/mobile/Applications/358A3C6A-E437-4AE8-8883-50DBB81F9080/DrawCASE.app/DrawCASE
    Identifier:      DrawCASE
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2012-04-27 13:45:52.846 +0900
    OS Version:      iPhone OS 5.1 (9B176)
    Report Version:  104
    Exception Type:  00000020
    Exception Codes: 0x8badf00d
    Highlighted Thread:  0
    Application Specific Information:
    DrawCASE[10057] has active assertions beyond permitted time:
        <SBProcessAssertion: 0x12abfa70> identifier: Suspending process: DrawCASE[10057] permittedBackgroundDuration: 10.000000 reason: suspend owner pid:52 preventSuspend  preventThrottleDownCPU  preventThrottleDownUI
    Elapsed total CPU time (seconds): 12.390 (user 12.390, system 0.000), 62% CPU
    Elapsed application CPU time (seconds): 9.922, 49% CPU
    Thread 0 name:  Dispatch queue: com.apple.main-thread
    Thread 0:
    0   DrawCASE                                   0x00e0d408 0x1000 + 14730248
    1   DrawCASE                                   0x001884c8 0x1000 + 1602760
    2   DrawCASE                                   0x00186d6c 0x1000 + 1596780
    3   DrawCASE                                   0x001895fc 0x1000 + 1607164
    4   DrawCASE                                   0x00872264 0x1000 + 8852068
    5   DrawCASE                                   0x0087d148 0x1000 + 8896840
    6   DrawCASE                                   0x0078bae0 0x1000 + 7908064
    7   DrawCASE                                   0x0087c828 0x1000 + 8894504
    8   DrawCASE                                   0x000eb148 0x1000 + 958792
    9   DrawCASE                                   0x000eb6e8 0x1000 + 960232
    10  DrawCASE                                   0x000ef720 0x1000 + 976672
    11  DrawCASE                                   0x00005d84 0x1000 + 19844
    12  DrawCASE                                   0x00a04010 0x1000 + 10498064
    13  DrawCASE                                   0x00a03aec 0x1000 + 10496748
    14  DrawCASE                                   0x00e5589c 0x1000 + 15026332
    15  DrawCASE                                   0x010149a4 0x1000 + 16857508
    16  DrawCASE                                   0x01013ee0 0x1000 + 16854752
    17  DrawCASE                                   0x005e8054 0x1000 + 6189140
    18  DrawCASE                                   0x014d3070 0x1000 + 21831792
    19  DrawCASE                                   0x014d4664 0x1000 + 21837412
    20  DrawCASE                                   0x00e9bf40 0x1000 + 15314752
    21  DrawCASE                                   0x00e9b554 0x1000 + 15312212
    22  DrawCASE                                   0x00fe0190 0x1000 + 16642448
    23  QuartzCore                                  0x32231868 0x321dd000 + 346216
    24  QuartzCore                                  0x322317be 0x321dd000 + 346046
    25  IOMobileFramebuffer                    0x33d16ffa 0x33d13000 + 16378
    26  IOKit                             0x310e8606 0x310e4000 + 17926
    27  CoreFoundation                           0x338b2f0c 0x33830000 + 536332
    28  CoreFoundation                           0x338bd51c 0x33830000 + 578844
    29  CoreFoundation                           0x338bd4be 0x33830000 + 578750
    30  CoreFoundation                           0x338bc30c 0x33830000 + 574220
    31  CoreFoundation                           0x3383f49e 0x33830000 + 62622
    32  CoreFoundation                           0x3383f366 0x33830000 + 62310
    33  GraphicsServices                         0x32dbd432 0x32db9000 + 17458
    34  UIKit                              0x35534e76 0x35503000 + 204406
    35  DrawCASE                                   0x00ec6a9c 0x1000 + 15489692
    36  DrawCASE                                   0x014f39e4 0x1000 + 21965284
    Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
    Thread 1:
    0   libsystem_kernel.dylib                     0x36b753a8 0x36b74000 + 5032
    1   libdispatch.dylib              0x31f39f04 0x31f36000 + 16132
    2   libdispatch.dylib              0x31f39c22 0x31f36000 + 15394
    Thread 2 name:  WebThread
    Thread 2:
    0   libsystem_kernel.dylib                     0x36b75004 0x36b74000 + 4100
    1   libsystem_kernel.dylib                     0x36b751fa 0x36b74000 + 4602
    2   CoreFoundation                            0x338bd3ec 0x33830000 + 578540
    3   CoreFoundation                            0x338bc124 0x33830000 + 573732
    4   CoreFoundation                            0x3383f49e 0x33830000 + 62622
    5   CoreFoundation                            0x3383f366 0x33830000 + 62310
    6   WebCore                        0x370b10f0 0x37008000 + 692464
    7   libsystem_c.dylib              0x32cac72e 0x32c9e000 + 59182
    8   libsystem_c.dylib              0x32cac5e8 0x32c9e000 + 58856
    Thread 3:
    0   libsystem_kernel.dylib                     0x36b75004 0x36b74000 + 4100
    1   libsystem_kernel.dylib                     0x36b751fa 0x36b74000 + 4602
    2   DrawCASE                                   0x00a1c070 0x1000 + 10596464
    3   libsystem_c.dylib              0x32cac72e 0x32c9e000 + 59182
    4   libsystem_c.dylib              0x32cac5e8 0x32c9e000 + 58856
    Thread 4:
    0   libsystem_kernel.dylib                     0x36b85068 0x36b74000 + 69736
    1   libsystem_c.dylib              0x32caca46 0x32c9e000 + 59974
    2   libsystem_c.dylib              0x32cac7c2 0x32c9e000 + 59330
    3   DrawCASE                                   0x0109cf3c 0x1000 + 17415996
    4   DrawCASE                                   0x00f8ebec 0x1000 + 16309228
    5   DrawCASE                                   0x0109d1e0 0x1000 + 17416672
    6   DrawCASE                                   0x0109d2a8 0x1000 + 17416872
    7   DrawCASE                                   0x0109d7e8 0x1000 + 17418216
    8   libsystem_c.dylib              0x32cac72e 0x32c9e000 + 59182
    9   libsystem_c.dylib              0x32cac5e8 0x32c9e000 + 58856
    Thread 5:
    0   libsystem_kernel.dylib                     0x36b85068 0x36b74000 + 69736
    1   libsystem_c.dylib              0x32caca46 0x32c9e000 + 59974
    2   libsystem_c.dylib              0x32cac7c2 0x32c9e000 + 59330
    3   DrawCASE                                   0x0109cf3c 0x1000 + 17415996
    4   DrawCASE                                   0x00f8ebec 0x1000 + 16309228
    5   DrawCASE                                   0x0109d1e0 0x1000 + 17416672
    6   DrawCASE                                   0x0109d2a8 0x1000 + 17416872
    7   DrawCASE                                   0x0109d7e8 0x1000 + 17418216
    8   libsystem_c.dylib              0x32cac72e 0x32c9e000 + 59182
    9   libsystem_c.dylib              0x32cac5e8 0x32c9e000 + 58856
    Thread 6:
    0   libsystem_kernel.dylib                     0x36b85068 0x36b74000 + 69736
    1   libsystem_c.dylib              0x32caca46 0x32c9e000 + 59974
    2   libsystem_c.dylib              0x32cb3574 0x32c9e000 + 87412
    3   DrawCASE                                   0x0109cfc0 0x1000 + 17416128
    4   DrawCASE                                   0x005eac0c 0x1000 + 6200332
    5   DrawCASE                                   0x0109d1e0 0x1000 + 17416672
    6   DrawCASE                                   0x0109d2a8 0x1000 + 17416872
    7   DrawCASE                                   0x0109d7e8 0x1000 + 17418216
    8   libsystem_c.dylib              0x32cac72e 0x32c9e000 + 59182
    9   libsystem_c.dylib              0x32cac5e8 0x32c9e000 + 58856
    Thread 7 name:  com.apple.NSURLConnectionLoader
    Thread 7:
    0   libsystem_kernel.dylib                     0x36b75004 0x36b74000 + 4100
    1   libsystem_kernel.dylib                     0x36b751fa 0x36b74000 + 4602
    2   CoreFoundation                            0x338bd3ec 0x33830000 + 578540
    3   CoreFoundation                            0x338bc124 0x33830000 + 573732
    4   CoreFoundation                            0x3383f49e 0x33830000 + 62622
    5   CoreFoundation                            0x3383f366 0x33830000 + 62310
    6   Foundation                     0x327d6bb2 0x327c6000 + 68530
    7   Foundation                     0x327d6a7a 0x327c6000 + 68218
    8   Foundation                     0x3286a58a 0x327c6000 + 673162
    9   libsystem_c.dylib              0x32cac72e 0x32c9e000 + 59182
    10  libsystem_c.dylib                           0x32cac5e8 0x32c9e000 + 58856
    Thread 8 name:  com.apple.CFSocket.private
    Thread 8:
    0   libsystem_kernel.dylib                     0x36b85570 0x36b74000 + 71024
    1   CoreFoundation                            0x338c163a 0x33830000 + 595514
    2   libsystem_c.dylib              0x32cac72e 0x32c9e000 + 59182
    3   libsystem_c.dylib              0x32cac5e8 0x32c9e000 + 58856
    Unknown thread crashed with unknown flavor: 5, state_count: 1
    Binary Images:
        0x1000 -  0x15adfff +DrawCASE armv7  <70c1910c354dd296ef49ac5c3c71a849> /var/mobile/Applications/358A3C6A-E437-4AE8-8883-50DBB81F9080/DrawCASE.app/DrawCASE
    0x2fe16000 - 0x2fe37fff  dyld armv7  <4a817f3e0def30d5ae2032157d889c1d> /usr/lib/dyld
    0x3014d000 - 0x30159fff  CoreVideo armv7  <364fa32d513f3c11b50970120545f1a8> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x302b0000 - 0x302f5fff  GeoServices armv7  <a26be2e76e8730ab91a16502aba376be> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x30304000 - 0x303d4fff  WebKit armv7  <6ff2796c2f933050ac6ecdee9fc6a216> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
    0x303d5000 - 0x303d5fff  vecLib armv7  <a2cfe25e77aa36bfb4a30b2d0d2dd465> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
    0x303d6000 - 0x303ddfff  libc++abi.dylib armv7  <bab4dcbfc5943d3fbb637342d35e8045> /usr/lib/libc++abi.dylib
    0x303de000 - 0x303f9fff  libJapaneseConverter.dylib armv7  <0db483beb91f367f9fe26d93fd8f5e49> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x303fa000 - 0x30400fff  liblockdown.dylib armv7  <9e45ce468a6f31e5b8263f2c224aa800> /usr/lib/liblockdown.dylib
    0x30623000 - 0x30627fff  libAccessibility.dylib armv7  <9a17d07b5a3b38cfafdf16f78c99b572> /usr/lib/libAccessibility.dylib
    0x30628000 - 0x306eefff  GLEngine armv7  <6617f2b4ee283469a5595129889ff049> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
    0x306f6000 - 0x3070cfff  libmis.dylib armv7  <258bc92be5823b239b4412dd42cb4807> /usr/lib/libmis.dylib
    0x3070d000 - 0x307b7fff  libBLAS.dylib armv7  <bf822cc1a3243ae7b104cf73ca22d352> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
    0x30826000 - 0x30827fff  CoreSurface armv7  <7850befd26b630f183ee326aaadd7b34> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
    0x3083c000 - 0x30880fff  MobileCoreServices armv7  <757226927a873d5492be721908077b48> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x308b8000 - 0x308d5fff  libsystem_info.dylib armv7  <50863bcbf478323e96a8e5b1a83ea6f9> /usr/lib/system/libsystem_info.dylib
    0x309bc000 - 0x309c8fff  libz.1.dylib armv7  <36ce86a3dc8c344596c8c325615f374b> /usr/lib/libz.1.dylib
    0x30e58000 - 0x30e67fff  SpringBoardServices armv7  <ca5b10014b473d2eaec5c48d89ee1b54> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
    0x30f8e000 - 0x30f8ffff  libdyld.dylib armv7  <977b0ad6f2f433108b4a0324a57cd2ab> /usr/lib/system/libdyld.dylib
    0x30f99000 - 0x30fbcfff  Bom armv7  <c3435ecd2e5839f89de51edad0e1bb00> /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x310ba000 - 0x310defff  PrintKit armv7  <08509c7bc915358b953de6f5cbef5c56> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
    0x310e4000 - 0x31122fff  IOKit armv7  <fcda71d29d6136dfbd84c1725f4998e5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x31125000 - 0x3114afff  OpenCL armv7  <ec915bfc3f7633dda61b5fc87459119b> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
    0x31203000 - 0x31430fff  MediaToolbox armv7  <ec9bc89489763c6c93f86c5c490b2d69> /System/Library/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
    0x315f6000 - 0x31647fff  CoreText armv7  <5bfac4ee88d03d5b87a1f105abb7756c> /System/Library/Frameworks/CoreText.framework/CoreText
    0x31648000 - 0x31653fff  AccountSettings armv7  <373e59421d983c93931cfbad87b1ae35> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
    0x31692000 - 0x31696fff  IOSurface armv7  <6ae77a40f8e93f28bc466ca93f5675d4> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
    0x316e4000 - 0x316f8fff  PersistentConnection armv7  <65682d21486836a3aa3e17b9461e7b3a> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
    0x316f9000 - 0x31751fff  CoreAudio armv7  <be335e8eb6f93594b028a6ddd503a183> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x317a7000 - 0x317effff  CoreMedia armv7  <eb1f503312be3c93b07b2d0d25177000> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x31936000 - 0x31a5bfff  JavaScriptCore armv7  <2ffc6c87b94434288366bd53765ee267> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
    0x31a5c000 - 0x31a91fff  SystemConfiguration armv7  <4464a4e3bb3f32f7abaa35ebf31fda49> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x31a97000 - 0x31adafff  libcommonCrypto.dylib armv7  <95b49daf4cf038b6bea8010bba3a1e26> /usr/lib/system/libcommonCrypto.dylib
    0x31adb000 - 0x31addfff  MobileInstallation armv7  <215d93dbb0f63cbf828f9126eb7b5349> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
    0x31b1a000 - 0x31b5afff  libGLImage.dylib armv7  <40448706190031f6b0d9636cc11ee81d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x31b5b000 - 0x31c49fff  libiconv.2.dylib armv7  <2cfefe2ad1d335dd9549562910e7a2e2> /usr/lib/libiconv.2.dylib
    0x31c4a000 - 0x31c85fff  libCGFreetype.A.dylib armv7  <55941c96cf1f3b048e72a148c4496c16> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
    0x31c86000 - 0x31c92fff  libCRFSuite.dylib armv7  <bdb2b4d1a78c39c1ba60d791207aed2a> /usr/lib/libCRFSuite.dylib
    0x31cdc000 - 0x31cf1fff  libresolv.9.dylib armv7  <66f7557fa4b43979b186e00271839fdb> /usr/lib/libresolv.9.dylib
    0x31cfd000 - 0x31d02fff  CrashReporterSupport armv7  <2bb524b3bb3c3eb2932ce13b655b7c7c> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
    0x31f36000 - 0x31f4cfff  libdispatch.dylib armv7  <9ecfaef4110a3bf9a92d12f0fe8d1d78> /usr/lib/system/libdispatch.dylib
    0x320df000 - 0x320e0fff  DataMigration armv7  <d77f0e8f39ee37f5a2ac713a3fd9e693> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x320e1000 - 0x32118fff  Security armv7  <eea56f71fde83c2981f9281dc7823725> /System/Library/Frameworks/Security.framework/Security
    0x32179000 - 0x3217ffff  MobileKeyBag armv7  <e1f06241ef0e3f0aae00f15df572077e> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
    0x321d9000 - 0x321dbfff  libCoreVMClient.dylib armv7  <d4d4aa3090c83e87bcb15ed00b93fd5c> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
    0x321dc000 - 0x321dcfff  Accelerate armv7  <55b24cf91a8b3532bde6733c96f14c08> /System/Library/Frameworks/Accelerate.framework/Accelerate
    0x321dd000 - 0x322cefff  QuartzCore armv7  <a2afbe6483683d05ad51b106f98776e2> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x3237d000 - 0x32383fff  liblaunch.dylib armv7  <aa2bcba6fc7a36a191958fef2e995475> /usr/lib/system/liblaunch.dylib
    0x323d2000 - 0x32498fff  libobjc.A.dylib armv7  <90014d1bc583366d85622e43097df416> /usr/lib/libobjc.A.dylib
    0x325cd000 - 0x326d3fff  IMGSGX543GLDriver armv7  <a22da8177dc73bb895eb7a9f11e19d6a> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
    0x326fa000 - 0x326fafff  libCVMSPluginSupport.dylib armv7  <a80aaa9989483ce3a496a061fd1e9e0a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x326fb000 - 0x32774fff  ProofReader armv7  <6db611d8df6530d480f97a40bc519f70> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x327c6000 - 0x32944fff  Foundation armv7  <c40ddb073142315bb4ebb214343d0b7f> /System/Library/Frameworks/Foundation.framework/Foundation
    0x32945000 - 0x329fbfff  AVFoundation armv7  <35cb7a0eb1dc3554a777c1cc11cb0415> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x32ab7000 - 0x32abafff  NetworkStatistics armv7  <7848d8ebad99367cb4f7f4e3fe88e5d6> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
    0x32abb000 - 0x32abcfff  libsystem_blocks.dylib armv7  <9fdc27af7350323bbc7d98e14e027907> /usr/lib/system/libsystem_blocks.dylib
    0x32abe000 - 0x32af6fff  VideoToolbox armv7  <9f25f38d1cd13a1daff99cfde8884410> /System/Library/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
    0x32b3d000 - 0x32b87fff  ManagedConfiguration armv7  <5e0a131bbfec305ea01f9e01f486da63> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
    0x32b88000 - 0x32b8cfff  libGFXShared.dylib armv7  <998fccc16cf735dbb62324202995e193> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x32bd9000 - 0x32bdcfff  libmacho.dylib armv7  <e52b77623bd031bc807e77029566c777> /usr/lib/system/libmacho.dylib
    0x32c70000 - 0x32c7dfff  libbsm.0.dylib armv7  <750a0de73a733019a77144b805d4d2f8> /usr/lib/libbsm.0.dylib
    0x32c9e000 - 0x32d2afff  libsystem_c.dylib armv7  <f859ce1ad1773f0ba98d7c6e135b7697> /usr/lib/system/libsystem_c.dylib
    0x32d30000 - 0x32d33fff  libcompiler_rt.dylib armv7  <b2c05d8601c13be884097192dca4e187> /usr/lib/system/libcompiler_rt.dylib
    0x32d34000 - 0x32d4dfff  libRIP.A.dylib armv7  <1828cddc5dd93c61afbefb59587d7f8a> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
    0x32d59000 - 0x32da5fff  CoreTelephony armv7  <e8eb52ca5fe33c7488a33efd222e7804> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x32db9000 - 0x32dc3fff  GraphicsServices armv7  <e21a6e61bdd136b6805a9e3abe2e3d1f> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x32dc4000 - 0x32dc9fff  libsystem_dnssd.dylib armv7  <27bb5462450732e380f5a2c170546e93> /usr/lib/system/libsystem_dnssd.dylib
    0x32dca000 - 0x32dd9fff  GenerationalStorage armv7  <d84c3fd0e7bd36e78c256f2f4c5a4e91> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
    0x32de8000 - 0x32e36fff  CoreLocation armv7  <44550ebedf23334d85441d9743b74e03> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x32e50000 - 0x32f2ffff  RawCamera armv7  <98fb7b5042b2314b86f4be8d2881bd04> /System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x331f2000 - 0x331f6fff  AggregateDictionary armv7  <3a3a33f3a05538988c6e2bb363dc46a8> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
    0x331fb000 - 0x3321bfff  libxslt.1.dylib armv7  <39348471007e39dab80af68b08390456> /usr/lib/libxslt.1.dylib
    0x33346000 - 0x33357fff  libxpc.dylib armv7  <ccf25b1e49ce3b2fa58d8c8546755505> /usr/lib/system/libxpc.dylib
    0x33358000 - 0x3335ffff  AssetsLibraryServices armv7  <0703f561f9a038b6850d6e93bba7e5f4> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
    0x33438000 - 0x334b7fff  libsqlite3.dylib armv7  <bf01f5ed47b033d8bde30d735ff44416> /usr/lib/libsqlite3.dylib
    0x334e3000 - 0x334e9fff  libnotify.dylib armv7  <9406297de3e43742887890662a87ab53> /usr/lib/system/libnotify.dylib
    0x3360b000 - 0x33621fff  DictionaryServices armv7  <6ed2e967136f37d4a4b9b318d6c43b83> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
    0x33622000 - 0x33622fff  liblangid.dylib armv7  <644ff4bcfbf337b5b5859e3f0fc0a9a8> /usr/lib/liblangid.dylib
    0x3362a000 - 0x33666fff  AppSupport armv7  <311eac85b2a433a884dacba77217b49e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x33829000 - 0x3382cfff  CaptiveNetwork armv7  <f5cc4b97ce9432da9426f12621453325> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x33830000 - 0x33947fff  CoreFoundation armv7  <6d450fe923d7387f8b01845e0edd713d> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x33958000 - 0x33959fff  libremovefile.dylib armv7  <402f8956975d3b6fb86ab9b31a43242c> /usr/lib/system/libremovefile.dylib
    0x33a3a000 - 0x33cfbfff  libLAPACK.dylib armv7  <0e94e9a7e7a334649afaccae0f1215a2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dyl ib
    0x33d13000 - 0x33d17fff  IOMobileFramebuffer armv7  <42dbc26828e934acabb4f3b0a35d8250> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
    0x33d18000 - 0x33d22fff  libvMisc.dylib armv7  <e8248c797b9b363594bb652ddf7ce16d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dyli b
    0x33d23000 - 0x33d23fff  libunwind.dylib armv7  <e0a73a57795f3e1698a52ebe6fc07005> /usr/lib/system/libunwind.dylib
    0x33d24000 - 0x33d43fff  libSystem.B.dylib armv7  <0c55744b6f7335eebba4ca2c3d10b43c> /usr/lib/libSystem.B.dylib
    0x33d5a000 - 0x33e31fff  CFNetwork armv7  <765a472c824830eea91b8f02d12867e4> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x33e83000 - 0x33e8dfff  libbz2.1.0.dylib armv7  <40e4045fb79e382b8833707746cf28b1> /usr/lib/libbz2.1.0.dylib
    0x33e8e000 - 0x33f14fff  CoreMotion armv7  <6a9355d5a8e238b5b8f193605d509e15> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x33f1e000 - 0x33f6ffff  libstdc++.6.dylib armv7  <c352af5a742e3c7a8d4d7e5f6f454793> /usr/lib/libstdc++.6.dylib
    0x34507000 - 0x34508fff  libsystem_sandbox.dylib armv7  <66e985f3eea03ef08afb7cf4c153f76e> /usr/lib/system/libsystem_sandbox.dylib
    0x34509000 - 0x3450dfff  libcache.dylib armv7  <d6a7436ed8dc33d795c9b42baf864882> /usr/lib/system/libcache.dylib
    0x3451a000 - 0x34577fff  StoreServices armv7  <628fbbc73ed93730962c53bfbfde6794> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x345a4000 - 0x34614fff  CoreImage armv7  <86ac6f5a267637b6b7f8a831dfc7c64b> /System/Library/Frameworks/CoreImage.framework/CoreImage
    0x3473d000 - 0x3473ffff  libCoreFSCache.dylib armv7  <808518e0fbf539af8489f028ca5198c7> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
    0x34b23000 - 0x34b6cfff  AddressBook armv7  <b17a2962e9043e0385c3c2c652155f2b> /System/Library/Frameworks/AddressBook.framework/AddressBook
    0x34c86000 - 0x34c8ffff  libMobileGestalt.dylib armv7  <4a15e845dc6f3a4a980de66c1cc44c42> /usr/lib/libMobileGestalt.dylib
    0x34cd1000 - 0x34d7efff  libxml2.2.dylib armv7  <58d47f064e0232119f4b838ad659f9c1> /usr/lib/libxml2.2.dylib
    0x34d7f000 - 0x34e4efff  libGLProgrammability.dylib armv7  <49607ffe4ee9389494285a213e392924> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x34ed2000 - 0x34ed8fff  MobileIcons armv7  <ed1b46f917903c9b9baaa2be4392dafe> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x34ee1000 - 0x34fa3fff  Celestial armv7  <2a59586b0ae937c3b25fe526924aa885> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
    0x354b9000 - 0x35502fff  libc++.1.dylib armv7  <5b690e5dd5a43a7fb166ade9fe58a7a4> /usr/lib/libc++.1.dylib
    0x35503000 - 0x359a5fff  UIKit armv7  <d72bcc68e76a3a55a963590cdcffe8cd> /System/Library/Frameworks/UIKit.framework/UIKit
    0x359d2000 - 0x359dafff  ProtocolBuffer armv7  <0e846afacf823d2b8c029cc3010a8253> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x35a2d000 - 0x35a2dfff  libkeymgr.dylib armv7  <ebd2dddf55d83cf48a18913968775960> /usr/lib/system/libkeymgr.dylib
    0x35a2e000 - 0x35b73fff  CoreGraphics armv7  <903545b89a7f311d95100ac7d1d44709> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x35d3d000 - 0x35d4cfff  OpenGLES armv7  <e80acc691001301e96101bb89d940033> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x35e31000 - 0x36375fff  FaceCoreLight armv7  <f326d88709683520b251dc53cb847c11> /System/Library/PrivateFrameworks/FaceCoreLight.framework/FaceCoreLight
    0x3637d000 - 0x36561fff  AudioToolbox armv7  <c91e27850452330ea804db6408840fd2> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x365b1000 - 0x36625fff  MediaControlSender armv7  <87315c54b2293ab589950341ff91b45d> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
    0x36a4c000 - 0x36a4cfff  libgcc_s.1.dylib armv7  <eb82984fa36c329387aa518aa5205f3d> /usr/lib/libgcc_s.1.dylib
    0x36a4d000 - 0x36a5efff  DataAccessExpress armv7  <e6144ba265da3bb7b9a263aa1a29b054> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x36a6b000 - 0x36a6efff  libsystem_network.dylib armv7  <356cb66612e836968ef24e6e5c3364cc> /usr/lib/system/libsystem_network.dylib
    0x36a6f000 - 0x36ab9fff  libvDSP.dylib armv7  <441b42aca07b3da39feab25f8349918f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
    0x36aba000 - 0x36ac2fff  MobileWiFi armv7  <b76c3e9fb78234c392058250d4620e72> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
    0x36adc000 - 0x36ae1fff  libcopyfile.dylib armv7  <52e874396c393ed29099789ce702cfe2> /usr/lib/system/libcopyfile.dylib
    0x36b74000 - 0x36b8afff  libsystem_kernel.dylib armv7  <7ac5560851ce3cb3981068092074b409> /usr/lib/system/libsystem_kernel.dylib
    0x36b8b000 - 0x36d48fff  ImageIO armv7  <02e3578171fa3b6a969b244275fd2bab> /System/Library/Frameworks/ImageIO.framework/ImageIO
    0x36db3000 - 0x36db4fff  libdnsinfo.dylib armv7  <9aede8d6579d3430ac39ae5f95cce498> /usr/lib/system/libdnsinfo.dylib
    0x36e3d000 - 0x36e53fff  EAP8021X armv7  <fffe86a22bc434a6ae84f23bfecef9d6> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
    0x36e54000 - 0x36f9dfff  libicucore.A.dylib armv7  <b70646b63f1f3b33896dd8cb91b8dab1> /usr/lib/libicucore.A.dylib
    0x37008000 - 0x377c6fff  WebCore armv7  <814351ff217e3425a8e532c2e2251f73> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x37945000 - 0x37948fff  CoreTime armv7  <a398de5ba1e43a11b7008e9bb5a7f6fe> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
    0x37949000 - 0x3794efff  libGPUSupportMercury.dylib armv7  <3c1cc3175c403ace8fcbd3826bd43807> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
    0x37c11000 - 0x37ce9fff  vImage armv7  <caf3648be2933384b6aa1ae7408ab4f0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage

  • Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS

    Hi All,
    https://bugbase.adobe.com/index.cfm?event=bug&id=3071298
    As per above link this bug resolve(latest build) but i am facing  Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS, using the packaging tools.
    (for  inappPurchase Demo app --- i used below link code)
    http://code.google.com/p/in-app-purchase-air-ios/
    Thanks,
    Sunil Rana

    Hi Everyone,
    I'm getting basically the same error. Are there any rules or guidelines that we are suppose follow when writing an app for iOS? Is there a way to know exactly where it is crashing? My apps are not MXML, only actionscript. Also I made sure I have no errors not even warnings in my SWF file, but still no go! 
    Getting the same error.
    Exception in thread "main" java.lang.NullPointerException
            at adobe.abc.GlobalOptimizer.sccp_eval(GlobalOptimizer.java:6944)
            at adobe.abc.GlobalOptimizer.sccp_analyze(GlobalOptimizer.java:5909)
            at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4628)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3514)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2215)
            at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:526)
            at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:336)
            at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler
    .java:472)
            at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82)
    Compilation failed while executing : ADT
    regards,
    Keith

  • StageWebView crashes Adobe AIR on iOS when assigning it a stage

    I'm having a problem with StageWebView on iOS (in Android it works fine). More exactly, It's an iPad app.
    I'm loading a dynamic PHP URL with StageWebView's loadURL method, and then I start building Flash interface elements in a left column (the StageWebView browser is in the right column), which works fine, then I wait a couple of seconds for the page to load (with a Timer), and then I finally show the browser to the user with:
    this.webView.stage = this.stage;
    The moment I run that line, the whole iOS application crashes and the iPad goes back to its desktop (I suppose that should never happen in Adobe AIR no matter what you do).
    But the process is still in memory, since if I double click the iPad physical button, I can see my application icon in the running apps bar (though if I click the icon, the app starts from the beginning, instead of resuming).
    Using AIR 2.6. Any ideas on how to solve this crash?
    Thanks.

    Thanks for the link. I've checked it, but the differences listed are not relevant in my app, I think.
    Yes, I know there is also the "Event.COMPLETE" event, but I can't use that because it only fires after the page is fully loaded, with all its images, and the page I'm trying to load has 200 images or so and takes almost a minute to load, so I can't have the user wait that long. I just want to wait until the HTML has loaded.
    Anyway, I've also tried Event.COMPLETE and after the long wait, the app still crashes when trying to show the StageWebView.
    I've even tried a complex solution, by using StageWebViewBridge by Pedro Casaubon to communicate with the JavaScript in the page, using JavaScript's "DOMContentLoaded" event, so it fires as soon as the HTML (but not the images) has loaded. That works, but as soon as I make the StageWebView visible by assigning it the stage, AIR crashes!
    So, AIR crashes when trying to assign the stage to the StageWebView object in all these three cases:
    - After waiting for AS3 Event.COMPLETE event listener added to loadURL()
    - After waiting for JavaScript "DOMContentLoaded"
    - After waiting for a fixed period of time set with a Timer event
    The only way AIR doesn't crash when assigning the stage to StageWebView is NOT waiting at all. That is, running the loadURL function and immediately running the "this.webView.stage = this.stage;" line to show the StageWebView object in the stage. In that case it works, but it shows some ugly white box in the StageWebView area while loading, which I was trying to avoid, plus JavaScript events don't work until the page is loaded.
    All those crashes described above are most likely a bug in Adobe AIR, but I don't know how could somebody else reproduce it since it could be caused by anything (the dynamic PHP page I'm loading, the JS code, something in the AS3 code, though I don't think that code has anything out of the ordinary...)
    Also, when I test the app with ADL in the PC, everything works as expected. The crashes only happen in the iPad (it's an iPad 2).

  • AIR application crashes at certain point in windows vista

    Hi Dudes,
    I am facing a problem in Window vista. It always crash when we open the window component using Adobe AIR. I am creating the Dynamic window and adding the child component as window.rawChildren.addChild(object) like this.. we made the setup , it is running perfect in all OS except Windows vista 32/64 bit.
    When we work with our AIR application in conjunction with our own h/w product(Tablet Driver).[without connection of Tablet slate with PC it works fine but with it not].
    S/w Details:- AIR Installer above 2 and SDK above 2.
    OS- Win-Vista 32/64 bit.
    AIR application crashes at certain point and shows the error like:-
    Problem signature:
      Problem Event Name:                        APPCRASH
      Application Name:                             GTMP.exe
      Application Version:                           0.0.0.0
      Application Timestamp:                     4bde2f02
      Fault Module Name:                          Adobe AIR.dll
      Fault Module Version:                        3.1.0.4880
      Fault Module Timestamp:                  4eb760e8
      Exception Code:                                  c0000005
      Exception Offset:                                003ca9be
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             2057
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    I found one more error in debugging mode..the Alert message is
    Microsoft Visual C++ Runtime Library
    R6025 -
    pure virtual function Call.
    As per my view it is about some .dll and .CPL file makes some issues with AIR Frameworks is it? !!!!..
    Please give some ideas to resolve it.
    by
    Beerahamedkhan

    Could you try this against the released 3.2 version of AIR and our 3.3 beta to see if it still occurs?  If so, please open a new bug report on this over at bugbase.adobe.com?  Include any sample code or application to help us easily reproduce the problem.  If you'd like to keep your code private, please feel free to send it to me directly at [email protected]  In addition, if you can give us a .dmp of this crash it could be very helpful. 
    Please post back with the URL so that others affected can add their comments and votes.

  • Application crashes after IOS 5

    Application crashes after installing IOS 5

    OK, thanks for sharing that information.
    Now, how about more details, assuming you are looking for assistance, here, such as the name of the application? It's impossible for anyone here to offer even a guess with so little to go on. Have you checked for an update to said app, or contacted the developer to ask for help?
    Regards.

  • AIR installer causes application crash

    Hi all,
    I'm developing an AIR 2.0 application and it appears that the AIR installer is causing an application crash. Here's what the person who is experiencing the crash is reporting:
    I installed the software per instructions. However, when I attempt to launch Eye-Fi Center the Adobe Air License Agreement window is displayed. I click the "I agree" button and at that point, both the Adobe Air License Agreement window and the Eye-Fi Center app silently quit. No error messages are displayed.
    and here's the crash report:
    Process:         Eye-Fi Center [59929]
    Path:            /Applications/Eye-Fi/Eye-Fi Center.app/Contents/MacOS/Eye-Fi Center
    Identifier:      fi.eye.center.E430518E652B889A80EC0E8A6E532C09FF36DF62.1
    Version:         3.3.1 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [129]
    Date/Time:       2011-05-01 22:17:47.072 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          42120 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  258 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      50856651-057E-4AB3-9CF4-9649ADDDAFB7
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                 0x028a3d6f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 94804
    1   com.adobe.AIR                 0x02569b90 0x255a000 + 64400
    2   com.adobe.AIR                 0x02569dbb 0x255a000 + 64955
    3   com.apple.AppKit              0x93443f3c -[NSApplication(NSAppleEventHandling) _handleAEReopen] + 276
    4   com.apple.AppKit              0x9335110d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    5   com.apple.Foundation          0x98fa56c8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    6   com.apple.Foundation          0x98fa548c _NSAppleEventManagerGenericHandler + 228
    7   com.apple.AE                  0x98199f58 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    8   com.apple.AE                  0x98199e57 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    9   com.apple.AE                  0x98199d61 aeProcessAppleEvent + 197
    10  com.apple.HIToolbox           0x92363197 AEProcessAppleEvent + 50
    11  com.apple.AppKit              0x931ca9ca _DPSNextEvent + 1420
    12  com.apple.AppKit              0x931c9fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    13  com.apple.AppKit              0x9318c247 -[NSApplication run] + 821
    14  com.adobe.AIR                 0x0255ec2c 0x255a000 + 19500
    15  com.adobe.AIR                 0x0255ef72 0x255a000 + 20338
    16  ...A80EC0E8A6E532C09FF36DF62.1 0x00003101 start + 4213
    17  ...A80EC0E8A6E532C09FF36DF62.1 0x0000218e start + 258
    18  ...A80EC0E8A6E532C09FF36DF62.1 0x000020b5 start + 41
    Is there any other debug information that might prove useful in figuring out why this error is happening?
    Sean

    Sure - here's the full crash dump. Let me know if there's any other info you need to debug this.
    Process:         Eye-Fi Center [59929]
    Path:            /Applications/Eye-Fi/Eye-Fi Center.app/Contents/MacOS/Eye-Fi Center
    Identifier:      fi.eye.center.E430518E652B889A80EC0E8A6E532C09FF36DF62.1
    Version:         3.3.1 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [129]
    Date/Time:       2011-05-01 22:17:47.072 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          42120 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  258 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      50856651-057E-4AB3-9CF4-9649ADDDAFB7
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                 0x028a3d6f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 94804
    1   com.adobe.AIR                 0x02569b90 0x255a000 + 64400
    2   com.adobe.AIR                 0x02569dbb 0x255a000 + 64955
    3   com.apple.AppKit              0x93443f3c -[NSApplication(NSAppleEventHandling) _handleAEReopen] + 276
    4   com.apple.AppKit              0x9335110d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    5   com.apple.Foundation          0x98fa56c8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    6   com.apple.Foundation          0x98fa548c _NSAppleEventManagerGenericHandler + 228
    7   com.apple.AE                  0x98199f58 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    8   com.apple.AE                  0x98199e57 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    9   com.apple.AE                  0x98199d61 aeProcessAppleEvent + 197
    10  com.apple.HIToolbox           0x92363197 AEProcessAppleEvent + 50
    11  com.apple.AppKit              0x931ca9ca _DPSNextEvent + 1420
    12  com.apple.AppKit              0x931c9fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    13  com.apple.AppKit              0x9318c247 -[NSApplication run] + 821
    14  com.adobe.AIR                 0x0255ec2c 0x255a000 + 19500
    15  com.adobe.AIR                 0x0255ef72 0x255a000 + 20338
    16  ...A80EC0E8A6E532C09FF36DF62.1 0x00003101 start + 4213
    17  ...A80EC0E8A6E532C09FF36DF62.1 0x0000218e start + 258
    18  ...A80EC0E8A6E532C09FF36DF62.1 0x000020b5 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x90f9b09a mach_msg_trap + 10
    1   libSystem.B.dylib             0x90f9b807 mach_msg + 68
    2   libSystem.B.dylib             0x90fbebe6 mach_port_request_notification + 156
    3   libSystem.B.dylib             0x90fc7b60 _dispatch_kevent_machport_resume + 168
    4   libSystem.B.dylib             0x90fc1db4 _dispatch_kevent_merge + 208
    5   libSystem.B.dylib             0x90fc29f7 _dispatch_source_invoke + 343
    6   libSystem.B.dylib             0x90fc14f9 _dispatch_queue_invoke + 163
    7   libSystem.B.dylib             0x90fc1a35 _dispatch_queue_drain + 258
    8   libSystem.B.dylib             0x90fc2c44 _dispatch_queue_serial_drain_till_empty + 14
    9   libSystem.B.dylib             0x90fc2894 _dispatch_mgr_thread2 + 65
    10  libSystem.B.dylib             0x90fc205b _dispatch_mgr_invoke + 246
    11  libSystem.B.dylib             0x90fc14f9 _dispatch_queue_invoke + 163
    12  libSystem.B.dylib             0x90fc129e _dispatch_worker_thread2 + 240
    13  libSystem.B.dylib             0x90fc0d21 _pthread_wqthread + 390
    14  libSystem.B.dylib             0x90fc0b66 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x90f9b0e2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x90fc8c9c _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x9101145f pthread_cond_wait + 48
    3   com.adobe.AIR                 0x02a5e705 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907690
    4   com.adobe.AIR                 0x028ad04a r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 132399
    5   com.adobe.AIR                 0x02a5e7e9 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907918
    6   com.adobe.AIR                 0x02a5e863 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908040
    7   com.adobe.AIR                 0x02a5e8fe r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908195
    8   libSystem.B.dylib             0x90fc87fd _pthread_start + 345
    9   libSystem.B.dylib             0x90fc8682 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x90f9b0e2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x90fc8c9c _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x9101145f pthread_cond_wait + 48
    3   com.adobe.AIR                 0x02a5e705 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907690
    4   com.adobe.AIR                 0x028ad04a r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 132399
    5   com.adobe.AIR                 0x02a5e7e9 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907918
    6   com.adobe.AIR                 0x02a5e863 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908040
    7   com.adobe.AIR                 0x02a5e8fe r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908195
    8   libSystem.B.dylib             0x90fc87fd _pthread_start + 345
    9   libSystem.B.dylib             0x90fc8682 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x90f9b0e2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x90fc8c9c _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x9101145f pthread_cond_wait + 48
    3   com.adobe.AIR                 0x02a5e705 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907690
    4   com.adobe.AIR                 0x028ad04a r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 132399
    5   com.adobe.AIR                 0x02a5e7e9 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907918
    6   com.adobe.AIR                 0x02a5e863 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908040
    7   com.adobe.AIR                 0x02a5e8fe r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908195
    8   libSystem.B.dylib             0x90fc87fd _pthread_start + 345
    9   libSystem.B.dylib             0x90fc8682 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x90f9b0e2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x90fc8c9c _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x9101145f pthread_cond_wait + 48
    3   com.adobe.AIR                 0x02a5e705 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907690
    4   com.adobe.AIR                 0x028ad04a r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 132399
    5   com.adobe.AIR                 0x02a5e7e9 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907918
    6   com.adobe.AIR                 0x02a5e863 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908040
    7   com.adobe.AIR                 0x02a5e8fe r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908195
    8   libSystem.B.dylib             0x90fc87fd _pthread_start + 345
    9   libSystem.B.dylib             0x90fc8682 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x90f9b09a mach_msg_trap + 10
    1   libSystem.B.dylib             0x90f9b807 mach_msg + 68
    2   com.apple.CoreFoundation      0x961d237f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation      0x961d1464 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation      0x961d73a4 CFRunLoopRun + 84
    5   com.apple.DVCPROHDMuxer       0x14a1798f AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 317
    6   libSystem.B.dylib             0x90fc87fd _pthread_start + 345
    7   libSystem.B.dylib             0x90fc8682 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x90f9b0fa semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x90fc8c85 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x90ff7aa8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                 0x02a5e747 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907756
    4   com.adobe.AIR                 0x02a716a8 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1985421
    5   com.adobe.AIR                 0x02a5e7e9 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1907918
    6   com.adobe.AIR                 0x02a5e863 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908040
    7   com.adobe.AIR                 0x02a5e8fe r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1908195
    8   libSystem.B.dylib             0x90fc87fd _pthread_start + 345
    9   libSystem.B.dylib             0x90fc8682 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x90fc09b2 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x90fc0f48 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x90fc0b66 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x028a3d49  ecx: 0x00000000  edx: 0x00000000
      edi: 0x00000000  esi: 0xbfffeec8  ebp: 0xbfffee08  esp: 0xbfffed50
       ss: 0x0000001f  efl: 0x00010286  eip: 0x028a3d6f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000008
    Binary Images:
        0x1000 -     0x6fff +fi.eye.center.E430518E652B889A80EC0E8A6E532C09FF36DF62.1 3.3.1 (???) <B4BF58C3-036B-C7A6-F957-0FA8F79C1B50> /Applications/Eye-Fi/Eye-Fi Center.app/Contents/MacOS/Eye-Fi Center
      0x600000 -   0x6b5fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
      0x7a0000 -   0x7a4ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <6A211097-72ED-1461-4050-72C9101D79E4> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
      0x7dd000 -   0x7dfff3  com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
      0x7e5000 -   0x7ebffb  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <404165FF-1BA0-706B-F48A-10AC997162B1> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x255a000 -  0x31d0ff3 +com.adobe.AIR ??? (2.6.0.19140) <1C6DB0B7-4CC6-0151-37D0-5A70C30E04AE> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x337e000 -  0x33a7feb +com.digidesign.digidesign.DigiCoreAudioPlugIn 9.0.2 (9.0.2f74) <CA923898-8608-9501-7345-BAC693003B24> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x3700000 -  0x3764fe2  com.apple.LiveType.framework 2.1.4 (2.1.4) <1509B3FF-8573-CA6E-914A-6701F10C2159> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x3782000 -  0x37d7fe2  com.apple.DVCPROHDAudio 1.3.2 (1.3.2) <530BFE91-7DB3-511F-32AC-3189F90F5D8F> /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x14a00000 - 0x14a65fe0  com.apple.DVCPROHDMuxer 1.3.2 (1.3.2) <94C8CA82-8E8D-F23F-0771-D065994A65D3> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    0x90024000 - 0x90027fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x90028000 - 0x90063feb  libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x90064000 - 0x903cfff7  com.apple.QuartzCore 1.6.3 (227.36) <8E927524-EB0A-D5BA-C2E4-FA26FE4C428A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x903d0000 - 0x90635feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90636000 - 0x906a4ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x9078b000 - 0x90795fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x90796000 - 0x90843fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <C8925910-B927-968B-4B71-D83A4CEF8646> /usr/lib/libobjc.A.dylib
    0x90989000 - 0x90a04fff  com.apple.AppleVAFramework 4.10.23 (4.10.23) <57B7C626-F344-AB15-8556-00425FA765DE> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x90a46000 - 0x90b20ffb  com.apple.DesktopServices 1.5.10 (1.5.10) <2BA08DD4-35A2-A0FF-ADEA-B381F0CEEB81> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x90caf000 - 0x90cb4ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90cb5000 - 0x90cb5ff7  com.apple.Carbon 150 (152) <734BDB59-8B13-54FA-0653-AA8623DF9846> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90cb6000 - 0x90cfdffb  com.apple.CoreMediaIOServices 134.0 (1160) <4CD78557-3CDA-A4B5-33CB-BBB876B4463D> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
    0x90cfe000 - 0x90d3bff7  com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x90d3c000 - 0x90d3cff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90d49000 - 0x90d7cff3  libTrueTypeScaler.dylib ??? (???) <E5E16584-870F-CBCD-F861-3BB45324DE16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90e4f000 - 0x90e98fe7  libTIFF.dylib ??? (???) <5CE284EC-F637-EDBB-FDB3-61E86407CBB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x90e99000 - 0x90f19feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x90f60000 - 0x90f99ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <90C5DE81-1BEF-D807-A898-0FC19BDD14EC> /usr/lib/libcups.2.dylib
    0x90f9a000 - 0x91141ff7  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    0x91142000 - 0x911ddff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <FD63F92B-8DDE-4DBA-A7A5-0294E3607083> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x911de000 - 0x91360fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D375C1CF-C88D-C5F6-3C49-CD429023FBAC> /usr/lib/libicucore.A.dylib
    0x91361000 - 0x913f9fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x913fa000 - 0x9141cfef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x9141d000 - 0x91473ff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
    0x91474000 - 0x914ccfe7  com.apple.datadetectorscore 2.0 (80.7) <58C659CA-72CC-31D2-9732-09BF1A0CAAF6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x91905000 - 0x91924ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91925000 - 0x9192eff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9192f000 - 0x91972ff7  libGLU.dylib ??? (???) <2C7B2727-26F6-F29D-9D15-33044E87359F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91973000 - 0x91977ff7  libGIF.dylib ??? (???) <447BC6E8-4C56-3D5D-983B-6BEA0D26F319> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x91b80000 - 0x91c60fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x91c61000 - 0x91d0fff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x91d95000 - 0x91f77fff  com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x91f78000 - 0x9200afe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x92108000 - 0x9210fff7  com.apple.agl 3.0.12 (AGL-3.0.12) <61A74CE1-750D-9CAB-B780-306841739EE1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9212e000 - 0x9213eff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9213f000 - 0x9218fff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x921bc000 - 0x921bfff7  libCoreVMClient.dylib ??? (???) <12EF6056-7AC7-6691-75A2-BD0675C56A35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x921c0000 - 0x922c4fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x922d3000 - 0x92317ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92318000 - 0x92326ff7  com.apple.opengl 1.6.12 (1.6.12) <81AEF74E-E33A-B021-9CDB-6199104105FF> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92327000 - 0x9264bfef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x9264c000 - 0x92668fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x92669000 - 0x92b22ffb  com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x92b23000 - 0x92e1cfef  com.apple.QuickTime 7.6.6 (1756.15) <C2567783-4EAC-6803-522B-D701B95C4DAE> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92e1d000 - 0x9313dff3  com.apple.CoreServices.CarbonCore 861.34 (861.34) <3DA9098F-B71B-4BDE-5DE5-4B76C49158EB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9313e000 - 0x93141ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B84D7376-EE9C-2B7F-04FA-D622E2C10CA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x93182000 - 0x93a62ff7  com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93a63000 - 0x93a63ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a64000 - 0x93b1dfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x93b1e000 - 0x93c5aff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <781018FB-474B-E09C-D419-5BFF80590A10> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93c5b000 - 0x93c73ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x93c74000 - 0x93cb5ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <95079B56-0B7B-F114-5C43-5220DBE0FBB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x93cb6000 - 0x93d60fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <BE832CCE-B692-F55F-F5F8-3973649AFEA1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x947b5000 - 0x947c9fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x947ca000 - 0x94844fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <A02CEAE9-943A-CBE2-2350-4631C1E7B0A7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x94845000 - 0x949fffeb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <C96F11A7-2569-3037-C4C3-0342708FA3CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x94a00000 - 0x94a00ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94a5a000 - 0x94adcffb  SecurityFoundation ??? (???) <2E1F1AF0-A258-D215-2600-5DF03896D1F1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x94add000 - 0x94aedff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
    0x94dc7000 - 0x94e2bffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x94e2c000 - 0x94ee2ffb  libFontParser.dylib ??? (???) <D85C1840-0FA8-27A2-54B7-FF336099EBC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x94f54000 - 0x94fc3ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x94fc4000 - 0x94ff4ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x95f68000 - 0x95f6efff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x95f6f000 - 0x95f6fff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x96150000 - 0x96194fe7  com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x96195000 - 0x96310fe7  com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96319000 - 0x9631bff7  com.apple.securityhi 4.0 (36638) <C7DA80C1-DCFD-C321-08DA-5E6946CA66E0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9631c000 - 0x96376fe7  com.apple.CorePDF 1.3 (1.3) <EA168671-F44F-BFE4-AA7D-3801DA29A650> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x96382000 - 0x963a8ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x963a9000 - 0x965d4ff3  com.apple.QuartzComposer 4.2 ({156.28}) <62E864AD-3155-59B8-BA1F-8197360C8587> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x965e0000 - 0x96641fe7  com.apple.CoreText 3.151.8 (???) <6F5D6C49-4693-B9B7-6612-832E8F155747> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x96642000 - 0x9664cffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9664d000 - 0x9664eff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9669b000 - 0x966acff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x966ad000 - 0x96ac3ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x96bac000 - 0x9739b557  com.apple.CoreGraphics 1.545.0 (???) <8A4CB0D9-1001-0F62-4DA4-B8AB3B45E226> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x973f8000 - 0x97526fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97527000 - 0x97578ff7  com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x97579000 - 0x97581ff7  com.apple.DisplayServicesFW 2.3.0 (283) <305F9514-2404-5CF7-AFB4-00BB4D2EA69E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x97595000 - 0x975a1ff7  libkxld.dylib ??? (???) <9D8378E0-1C58-EED8-EA00-F4515B8BE7A3> /usr/lib/system/libkxld.dylib
    0x975a2000 - 0x9764affb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x97945000 - 0x97953fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x979c4000 - 0x97b07fef  com.apple.QTKit 7.6.6 (1756.15) <32C49374-14BC-53E7-FBFF-E11B42A41F56> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x97d08000 - 0x97d08ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d09000 - 0x97d09ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97d0a000 - 0x97d4cff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x97d4d000 - 0x97d58ff7  libGL.dylib ??? (???) <4425B9AA-B494-A336-EABB-6BBC9FF4EC4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97d84000 - 0x97d87ffb  com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x97d88000 - 0x97db0ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x97db1000 - 0x97db3ff7  libRadiance.dylib ??? (???) <B83179D4-E41C-D2BA-1E4C-A64CB45C15E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x97db4000 - 0x97db5ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x97eab000 - 0x97f15fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9817b000 - 0x98181fe7  com.apple.CommerceCore 1.0 (9) <928FCA4F-1366-AE18-CF67-87C79F5DAC21> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x98196000 - 0x981c9ff7  com.apple.AE 496.4 (496.4) <C73D124C-C722-41D8-3465-4CE0D0BA9307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x981ca000 - 0x98210ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x982d6000 - 0x98333ff7  com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x98334000 - 0x98440ff7  libGLProgrammability.dylib ??? (???) <2D172B4E-432F-D18E-EA99-3BD56DBE7649> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x98441000 - 0x98456fff  com.apple.ImageCapture 6.0.2 (6.0.2) <E9F4B952-27A1-5BFC-CA8D-DADA055D30E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x984c5000 - 0x985c6fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x985c7000 - 0x98604ff7  com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x98605000 - 0x98605ff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9860b000 - 0x9870dfef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
    0x988b9000 - 0x988e0ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9891a000 - 0x98967feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x98968000 - 0x9896fff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x98970000 - 0x98994ff7  libJPEG.dylib ??? (???) <A50127EB-C202-0436-E62D-41E2E893E436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x98995000 - 0x98ac1ffb  com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x98ac2000 - 0x98ad4ff7  com.apple.MultitouchSupport.framework 207.10 (207.10) <32CE2895-DAF0-2137-F9BE-8150359F43A1> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x98ad5000 - 0x98b15ff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x98b16000 - 0x98b54ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x98b55000 - 0x98b69ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x98b6a000 - 0x98b9bff7  libGLImage.dylib ??? (???) <1AF72191-087A-5D75-B3B9-3F537315F635> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x98b9c000 - 0x98ba0ff7  IOSurface ??? (???) <235E7E3D-B6E5-0AAA-C41A-7AC1F54A7EBF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x98ba1000 - 0x98be4ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x98c37000 - 0x98e35ff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98e58000 - 0x98e59ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <253E9552-5CEA-0D5A-1EDA-3B8F669B79EA> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98e5a000 - 0x98e67ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98e68000 - 0x98f05fe3  com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x98f3e000 - 0x98f59ff7  libPng.dylib ??? (???) <65E824F7-523A-CC34-ABDD-2A3B12DE1CA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x98f5a000 - 0x991cdfe7  com.apple.Foundation 6.6.6 (751.53) <C73FDD37-000B-C505-FD8D-80D1C9D17965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x991dc000 - 0x991e7ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <4560936D-7730-5DD2-BFD7-95270DDC210A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x991e8000 - 0x99209fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9920a000 - 0x992d5fef  com.apple.CoreServices.OSServices 359 (359) <EC340F74-8192-C9DD-40B3-AE4E519A38D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x992e3000 - 0x992e7ff7  libGFXShared.dylib ??? (???) <4F2199F0-320F-0B59-0380-D3131D644CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x992e8000 - 0x992e8ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x992e9000 - 0x99329ff7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <CE815114-CEFA-4AF4-7365-7908428AB733> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x99371000 - 0x993eaff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x99525000 - 0x9995aff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x99a03000 - 0x99abffff  com.apple.ColorSync 4.6.6 (4.6.6) <D00B95AE-2379-CB8E-B18C-FF5B66741C23> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x99ac0000 - 0x99ae0fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.8 GHz, 8 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x9126, 0xfa140000
    USB Device: Apple LED Cinema Display, 0x05ac  (Apple Inc.), 0x9226, 0xfa146000
    USB Device: Display iSight, 0x05ac  (Apple Inc.), 0x8508, 0xfa145000
    USB Device: Display Audio, 0x05ac  (Apple Inc.), 0x1105, 0xfa144000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0xfa120000
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd130000
    USB Device: iPhone, 0x05ac  (Apple Inc.), 0x1297, 0xfd132000
    USB Device: Akai MPK88, 0x09e8, 0x0071, 0xfd134000
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd133000
    USB Device: Mass Storage Device, 0x058f  (Alcor Micro, Corp.), 0x6366, 0xfd133300
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd133400
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd133420
    USB Device: USB 2.0 HUB, 0x050d  (Belkin Corporation), 0x0234, 0xfd131000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000
    FireWire Device: OEM ATA Device 00, G-TECH, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown
    FireWire Device: Onyx-i, Loud Technologies Inc., Up to 400 Mb/sec

  • Adobe Air Application Crash After installation

    Hi,
    We have developed a windows application "DsNetHTML5Player" in Adobe Air which shows HTML pages in sequence using <mx:HTML> control. When I run application in "Flash Builder" all plays fine.After creating its build and installing on system (Windows 7) application crashes with following error.
    Faulting application name: DsNetHTML5Player.exe, version: 0.0.0.0, time stamp: 0x4d7a7dd2
    Faulting module name: WebKit.dll, version: 6531.9.0.0, time stamp: 0x50fcd627
    Exception code: 0xc0000005
    Fault offset: 0x000a99ac
    Faulting process id: 0x19c0
    Faulting application start time: 0x01d00ae266bc2b46
    Faulting application path: C:\Program Files\DsNetHTML5Player\DsNetHTML5Player.exe
    Faulting module path: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll
    Report Id: 99882a24-76d6-11e4-a3ad-005056c00008
    If anyone has any idea what the problem could be here, please let me know.
    Thanks
    Umair

    Could you open a new bug report on this over at bugbase.adobe.com.  Please include a copy of your app (or a sample project) along with steps to reproduce.  Once added, please let me know the bug number and I'll have somone take a look ASAP.
    Thanks,
    Chris

  • Application crashed on iOS (iPad). How to debug?

    Hello,
    I have a slideshow application which shows pictures and other content like video, text, etc..
    It is supposed to be running indefinetely.
    However when running it overnight I got this crash after the application ran for 12 hours. Is there anything I can do about it? Mostly when I have a runtime error I noticed that the application does not crash on AIR so I guess this crash relates to some bug in the AIR implementation to native code?
    The app was running connected to the Flash Builder debugger and that did not show any error or exit information.
    Here is the crash report:
    Incident Identifier: DD4ED9C7-D899-44B0-BCEF-58830A18C1B2
    CrashReporter Key:   c847470b2f0e03dc82e1ac00e725b5ac8b6be7b8
    Hardware Model:      iPad2,1
    Process:         StoreConnect [25751]
    Path:            /var/mobile/Applications/79E4B5CD-EAE8-4BF9-9C62-BDB04105C5F9/StoreConnect.app/StoreConne ct
    Identifier:      StoreConnect
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2013-07-29 04:36:47.712 +0200
    OS Version:      iPhone OS 5.1 (9B176)
    Report Version:  104
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x00000000, 0x00000000
    Crashed Thread:  0
    Thread 0 name:  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:
    0   libsystem_kernel.dylib                  0x3702632c __pthread_kill + 8
    1   libsystem_c.dylib                       0x3318c208 pthread_kill + 48
    2   libsystem_c.dylib                       0x33185298 abort + 88
    3   libc++abi.dylib                         0x3087df64 abort_message + 40
    4   libc++abi.dylib                         0x3087b460 __cxa_pure_virtual + 12
    5   StoreConnect                            0x0003896c 0x3000 + 219500
    6   StoreConnect                            0x00076424 0x3000 + 472100
    7   StoreConnect                            0x00f07f34 0x3000 + 15748916
    8   StoreConnect                            0x00f054fc 0x3000 + 15738108
    9   StoreConnect                            0x016f27cc 0x3000 + 24049612
    10  StoreConnect                            0x016f2908 0x3000 + 24049928
    11  StoreConnect                            0x00f05398 0x3000 + 15737752
    12  StoreConnect                            0x017538a0 0x3000 + 24447136
    13  StoreConnect                            0x01874ae0 0x3000 + 25631456
    14  StoreConnect                            0x01874a64 0x3000 + 25631332
    15  StoreConnect                            0x01b37e10 0x3000 + 28528144
    16  StoreConnect                            0x01b396b0 0x3000 + 28534448
    17  StoreConnect                            0x01714acc 0x3000 + 24189644
    18  StoreConnect                            0x017149e0 0x3000 + 24189408
    19  StoreConnect                            0x01b5c760 0x3000 + 28677984
    20  StoreConnect                            0x01b378a0 0x3000 + 28526752
    21  StoreConnect                            0x01714158 0x3000 + 24187224
    22  StoreConnect                            0x01714f04 0x3000 + 24190724
    23  StoreConnect                            0x017f5c34 0x3000 + 25111604
    24  QuartzCore                              0x326d2868 CA::Display::DisplayLink::dispatch(unsigned long long, unsigned long long) + 160
    25  QuartzCore                              0x326d27be CA::Display::IOMFBDisplayLink::callback(__IOMobileFramebuffer*, unsigned long long, unsigned long long, unsigned long long, void*) + 54
    26  IOMobileFramebuffer                     0x341b7ffa IOMobileFramebufferVsyncNotifyFunc + 150
    27  IOKit                                   0x31589606 IODispatchCalloutFromCFMessage + 182
    28  CoreFoundation                          0x33d53f0c __CFMachPortPerform + 356
    29  CoreFoundation                          0x33d5e51c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 32
    30  CoreFoundation                          0x33d5e4be __CFRunLoopDoSource1 + 134
    31  CoreFoundation                          0x33d5d30c __CFRunLoopRun + 1364
    32  CoreFoundation                          0x33ce049e CFRunLoopRunSpecific + 294
    33  CoreFoundation                          0x33ce0366 CFRunLoopRunInMode + 98
    34  GraphicsServices                        0x3325e432 GSEventRunModal + 130
    35  UIKit                                   0x359d5e76 UIApplicationMain + 1074
    36  StoreConnect                            0x01735e00 0x3000 + 24325632
    37  StoreConnect                            0x01b728d4 0x3000 + 28768468
    Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
    Thread 1:
    0   libsystem_kernel.dylib                  0x370163a8 kevent + 24
    1   libdispatch.dylib                       0x323daf04 _dispatch_mgr_invoke + 708
    2   libdispatch.dylib                       0x323dac22 _dispatch_mgr_thread + 30
    Thread 2 name:  WebThread
    Thread 2:
    0   libsystem_kernel.dylib                  0x37016004 mach_msg_trap + 20
    1   libsystem_kernel.dylib                  0x370161fa mach_msg + 50
    2   CoreFoundation                          0x33d5e3ec __CFRunLoopServiceMachPort + 120
    3   CoreFoundation                          0x33d5d124 __CFRunLoopRun + 876
    4   CoreFoundation                          0x33ce049e CFRunLoopRunSpecific + 294
    5   CoreFoundation                          0x33ce0366 CFRunLoopRunInMode + 98
    6   WebCore                                 0x375520f0 RunWebThread(void*) + 396
    7   libsystem_c.dylib                       0x3314d72e _pthread_start + 314
    8   libsystem_c.dylib                       0x3314d5e8 thread_start + 0
    Thread 3:
    0   libsystem_kernel.dylib                  0x37016004 mach_msg_trap + 20
    1   libsystem_kernel.dylib                  0x370161fa mach_msg + 50
    2   StoreConnect                            0x00ee9874 0x3000 + 15624308
    3   libsystem_c.dylib                       0x3314d72e _pthread_start + 314
    4   libsystem_c.dylib                       0x3314d5e8 thread_start + 0
    Thread 4 name:  BackgroundThread
    Thread 4:
    0   libsystem_kernel.dylib                  0x37026068 __psynch_cvwait + 24
    1   libsystem_c.dylib                       0x3314da46 _pthread_cond_wait + 634
    2   libsystem_c.dylib                       0x3314d7c2 pthread_cond_wait + 34
    3   StoreConnect                            0x01876668 0x3000 + 25638504
    4   StoreConnect                            0x017becfc 0x3000 + 24886524
    5   StoreConnect                            0x018764b8 0x3000 + 25638072
    6   StoreConnect                            0x0187650c 0x3000 + 25638156
    7   StoreConnect                            0x01876218 0x3000 + 25637400
    8   libsystem_c.dylib                       0x3314d72e _pthread_start + 314
    9   libsystem_c.dylib                       0x3314d5e8 thread_start + 0
    Thread 5 name:  BackgroundThread
    Thread 5:
    0   libsystem_kernel.dylib                  0x37026068 __psynch_cvwait + 24
    1   libsystem_c.dylib                       0x3314da46 _pthread_cond_wait + 634
    2   libsystem_c.dylib                       0x3314d7c2 pthread_cond_wait + 34
    3   StoreConnect                            0x01876668 0x3000 + 25638504
    4   StoreConnect                            0x017becfc 0x3000 + 24886524
    5   StoreConnect                            0x018764b8 0x3000 + 25638072
    6   StoreConnect                            0x0187650c 0x3000 + 25638156
    7   StoreConnect                            0x01876218 0x3000 + 25637400
    8   libsystem_c.dylib                       0x3314d72e _pthread_start + 314
    9   libsystem_c.dylib                       0x3314d5e8 thread_start + 0
    Thread 6 name:  ScriptTimeout
    Thread 6:
    0   libsystem_kernel.dylib                  0x37026068 __psynch_cvwait + 24
    1   libsystem_c.dylib                       0x3314da46 _pthread_cond_wait + 634
    2   libsystem_c.dylib                       0x33154574 pthread_cond_timedwait + 40
    3   StoreConnect                            0x018766e8 0x3000 + 25638632
    4   StoreConnect                            0x000e7b38 0x3000 + 936760
    5   StoreConnect                            0x018764b8 0x3000 + 25638072
    6   StoreConnect                            0x0187650c 0x3000 + 25638156
    7   StoreConnect                            0x01876218 0x3000 + 25637400
    8   libsystem_c.dylib                       0x3314d72e _pthread_start + 314
    9   libsystem_c.dylib                       0x3314d5e8 thread_start + 0
    Thread 7 name:  com.apple.NSURLConnectionLoader
    Thread 7:
    0   libsystem_kernel.dylib                  0x37016004 mach_msg_trap + 20
    1   libsystem_kernel.dylib                  0x370161fa mach_msg + 50
    2   CoreFoundation                          0x33d5e3ec __CFRunLoopServiceMachPort + 120
    3   CoreFoundation                          0x33d5d124 __CFRunLoopRun + 876
    4   CoreFoundation                          0x33ce049e CFRunLoopRunSpecific + 294
    5   CoreFoundation                          0x33ce0366 CFRunLoopRunInMode + 98
    6   Foundation                              0x32c77bb2 +[NSURLConnection(Loader) _resourceLoadLoop:] + 302
    7   Foundation                              0x32c77a7a -[NSThread main] + 66
    8   Foundation                              0x32d0b58a __NSThread__main__ + 1042
    9   libsystem_c.dylib                       0x3314d72e _pthread_start + 314
    10  libsystem_c.dylib                       0x3314d5e8 thread_start + 0
    Thread 8 name:  com.apple.CFSocket.private
    Thread 8:
    0   libsystem_kernel.dylib                  0x37026570 select$DARWIN_EXTSN + 20
    1   CoreFoundation                          0x33d6263a __CFSocketManager + 726
    2   libsystem_c.dylib                       0x3314d72e _pthread_start + 314
    3   libsystem_c.dylib                       0x3314d5e8 thread_start + 0
    Thread 0 crashed with ARM Thread State:
        r0: 0x00000000    r1: 0x00000000      r2: 0x00000001      r3: 0x00000000
        r4: 0x00000006    r5: 0x3ef09d98      r6: 0x2fe00b50      r7: 0x2fe00900
        r8: 0x0e820600    r9: 0x00000000     r10: 0x0e8207e0     r11: 0x0007640c
        ip: 0x00000148    sp: 0x2fe008f4      lr: 0x3318c20f      pc: 0x3702632c
      cpsr: 0x00000010
    Binary Images:
        0x3000 -  0x1d02fff +StoreConnect armv7  <c40ec562675137959a453332672497f2> /var/mobile/Applications/79E4B5CD-EAE8-4BF9-9C62-BDB04105C5F9/StoreConnect.app/StoreConne ct
    0x2fe02000 - 0x2fe23fff  dyld armv7  <4a817f3e0def30d5ae2032157d889c1d> /usr/lib/dyld
    0x305ee000 - 0x305fafff  CoreVideo armv7  <364fa32d513f3c11b50970120545f1a8> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x30751000 - 0x30796fff  GeoServices armv7  <a26be2e76e8730ab91a16502aba376be> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x307a5000 - 0x30875fff  WebKit armv7  <6ff2796c2f933050ac6ecdee9fc6a216> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
    0x30876000 - 0x30876fff  vecLib armv7  <a2cfe25e77aa36bfb4a30b2d0d2dd465> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
    0x30877000 - 0x3087efff  libc++abi.dylib armv7  <bab4dcbfc5943d3fbb637342d35e8045> /usr/lib/libc++abi.dylib
    0x3089b000 - 0x308a1fff  liblockdown.dylib armv7  <9e45ce468a6f31e5b8263f2c224aa800> /usr/lib/liblockdown.dylib
    0x308b6000 - 0x30a15fff  libmecabra.dylib armv7  <06a0a1ee488030169bdfab11fc8d2c5c> /usr/lib/libmecabra.dylib
    0x30ac4000 - 0x30ac8fff  libAccessibility.dylib armv7  <9a17d07b5a3b38cfafdf16f78c99b572> /usr/lib/libAccessibility.dylib
    0x30ac9000 - 0x30b8ffff  GLEngine armv7  <6617f2b4ee283469a5595129889ff049> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
    0x30b97000 - 0x30badfff  libmis.dylib armv7  <258bc92be5823b239b4412dd42cb4807> /usr/lib/libmis.dylib
    0x30bae000 - 0x30c58fff  libBLAS.dylib armv7  <bf822cc1a3243ae7b104cf73ca22d352> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
    0x30cc7000 - 0x30cc8fff  CoreSurface armv7  <7850befd26b630f183ee326aaadd7b34> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
    0x30cdd000 - 0x30d21fff  MobileCoreServices armv7  <757226927a873d5492be721908077b48> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x30d59000 - 0x30d76fff  libsystem_info.dylib armv7  <50863bcbf478323e96a8e5b1a83ea6f9> /usr/lib/system/libsystem_info.dylib
    0x30e5d000 - 0x30e69fff  libz.1.dylib armv7  <36ce86a3dc8c344596c8c325615f374b> /usr/lib/libz.1.dylib
    0x312f9000 - 0x31308fff  SpringBoardServices armv7  <ca5b10014b473d2eaec5c48d89ee1b54> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
    0x3142f000 - 0x31430fff  libdyld.dylib armv7  <977b0ad6f2f433108b4a0324a57cd2ab> /usr/lib/system/libdyld.dylib
    0x3143a000 - 0x3145dfff  Bom armv7  <c3435ecd2e5839f89de51edad0e1bb00> /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x3155b000 - 0x3157ffff  PrintKit armv7  <08509c7bc915358b953de6f5cbef5c56> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
    0x31585000 - 0x315c3fff  IOKit armv7  <fcda71d29d6136dfbd84c1725f4998e5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x315c6000 - 0x315ebfff  OpenCL armv7  <ec915bfc3f7633dda61b5fc87459119b> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
    0x316a4000 - 0x318d1fff  MediaToolbox armv7  <ec9bc89489763c6c93f86c5c490b2d69> /System/Library/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
    0x31a97000 - 0x31ae8fff  CoreText armv7  <5bfac4ee88d03d5b87a1f105abb7756c> /System/Library/Frameworks/CoreText.framework/CoreText
    0x31ae9000 - 0x31af4fff  AccountSettings armv7  <373e59421d983c93931cfbad87b1ae35> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
    0x31b33000 - 0x31b37fff  IOSurface armv7  <6ae77a40f8e93f28bc466ca93f5675d4> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
    0x31b85000 - 0x31b99fff  PersistentConnection armv7  <65682d21486836a3aa3e17b9461e7b3a> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
    0x31b9a000 - 0x31bf2fff  CoreAudio armv7  <be335e8eb6f93594b028a6ddd503a183> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x31bf3000 - 0x31c0dfff  CoreServicesInternal armv7  <cccdb5638b17398f8082542c1b3c8cf6> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
    0x31c48000 - 0x31c90fff  CoreMedia armv7  <eb1f503312be3c93b07b2d0d25177000> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x31dd7000 - 0x31efcfff  JavaScriptCore armv7  <2ffc6c87b94434288366bd53765ee267> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
    0x31efd000 - 0x31f32fff  SystemConfiguration armv7  <4464a4e3bb3f32f7abaa35ebf31fda49> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x31f38000 - 0x31f7bfff  libcommonCrypto.dylib armv7  <95b49daf4cf038b6bea8010bba3a1e26> /usr/lib/system/libcommonCrypto.dylib
    0x31f7c000 - 0x31f7efff  MobileInstallation armv7  <215d93dbb0f63cbf828f9126eb7b5349> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
    0x31fbb000 - 0x31ffbfff  libGLImage.dylib armv7  <40448706190031f6b0d9636cc11ee81d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x31ffc000 - 0x320eafff  libiconv.2.dylib armv7  <2cfefe2ad1d335dd9549562910e7a2e2> /usr/lib/libiconv.2.dylib
    0x320eb000 - 0x32126fff  libCGFreetype.A.dylib armv7  <55941c96cf1f3b048e72a148c4496c16> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
    0x32127000 - 0x32133fff  libCRFSuite.dylib armv7  <bdb2b4d1a78c39c1ba60d791207aed2a> /usr/lib/libCRFSuite.dylib
    0x3217d000 - 0x32192fff  libresolv.9.dylib armv7  <66f7557fa4b43979b186e00271839fdb> /usr/lib/libresolv.9.dylib
    0x3219e000 - 0x321a3fff  CrashReporterSupport armv7  <2bb524b3bb3c3eb2932ce13b655b7c7c> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
    0x323d7000 - 0x323edfff  libdispatch.dylib armv7  <9ecfaef4110a3bf9a92d12f0fe8d1d78> /usr/lib/system/libdispatch.dylib
    0x32580000 - 0x32581fff  DataMigration armv7  <d77f0e8f39ee37f5a2ac713a3fd9e693> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x32582000 - 0x325b9fff  Security armv7  <eea56f71fde83c2981f9281dc7823725> /System/Library/Frameworks/Security.framework/Security
    0x3261a000 - 0x32620fff  MobileKeyBag armv7  <e1f06241ef0e3f0aae00f15df572077e> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
    0x3267a000 - 0x3267cfff  libCoreVMClient.dylib armv7  <d4d4aa3090c83e87bcb15ed00b93fd5c> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
    0x3267d000 - 0x3267dfff  Accelerate armv7  <55b24cf91a8b3532bde6733c96f14c08> /System/Library/Frameworks/Accelerate.framework/Accelerate
    0x3267e000 - 0x3276ffff  QuartzCore armv7  <a2afbe6483683d05ad51b106f98776e2> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x3281e000 - 0x32824fff  liblaunch.dylib armv7  <aa2bcba6fc7a36a191958fef2e995475> /usr/lib/system/liblaunch.dylib
    0x32873000 - 0x32939fff  libobjc.A.dylib armv7  <90014d1bc583366d85622e43097df416> /usr/lib/libobjc.A.dylib
    0x32a6e000 - 0x32b74fff  IMGSGX543GLDriver armv7  <a22da8177dc73bb895eb7a9f11e19d6a> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
    0x32b9b000 - 0x32b9bfff  libCVMSPluginSupport.dylib armv7  <a80aaa9989483ce3a496a061fd1e9e0a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x32b9c000 - 0x32c15fff  ProofReader armv7  <6db611d8df6530d480f97a40bc519f70> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x32c67000 - 0x32de5fff  Foundation armv7  <c40ddb073142315bb4ebb214343d0b7f> /System/Library/Frameworks/Foundation.framework/Foundation
    0x32de6000 - 0x32e9cfff  AVFoundation armv7  <35cb7a0eb1dc3554a777c1cc11cb0415> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x32f58000 - 0x32f5bfff  NetworkStatistics armv7  <7848d8ebad99367cb4f7f4e3fe88e5d6> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
    0x32f5c000 - 0x32f5dfff  libsystem_blocks.dylib armv7  <9fdc27af7350323bbc7d98e14e027907> /usr/lib/system/libsystem_blocks.dylib
    0x32f5f000 - 0x32f97fff  VideoToolbox armv7  <9f25f38d1cd13a1daff99cfde8884410> /System/Library/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
    0x32fde000 - 0x33028fff  ManagedConfiguration armv7  <5e0a131bbfec305ea01f9e01f486da63> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
    0x33029000 - 0x3302dfff  libGFXShared.dylib armv7  <998fccc16cf735dbb62324202995e193> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x3307a000 - 0x3307dfff  libmacho.dylib armv7  <e52b77623bd031bc807e77029566c777> /usr/lib/system/libmacho.dylib
    0x33111000 - 0x3311efff  libbsm.0.dylib armv7  <750a0de73a733019a77144b805d4d2f8> /usr/lib/libbsm.0.dylib
    0x3313f000 - 0x331cbfff  libsystem_c.dylib armv7  <f859ce1ad1773f0ba98d7c6e135b7697> /usr/lib/system/libsystem_c.dylib
    0x331d1000 - 0x331d4fff  libcompiler_rt.dylib armv7  <b2c05d8601c13be884097192dca4e187> /usr/lib/system/libcompiler_rt.dylib
    0x331d5000 - 0x331eefff  libRIP.A.dylib armv7  <1828cddc5dd93c61afbefb59587d7f8a> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
    0x331fa000 - 0x33246fff  CoreTelephony armv7  <e8eb52ca5fe33c7488a33efd222e7804> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x3325a000 - 0x33264fff  GraphicsServices armv7  <e21a6e61bdd136b6805a9e3abe2e3d1f> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x33265000 - 0x3326afff  libsystem_dnssd.dylib armv7  <27bb5462450732e380f5a2c170546e93> /usr/lib/system/libsystem_dnssd.dylib
    0x3326b000 - 0x3327afff  GenerationalStorage armv7  <d84c3fd0e7bd36e78c256f2f4c5a4e91> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
    0x33289000 - 0x332d7fff  CoreLocation armv7  <44550ebedf23334d85441d9743b74e03> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x332f1000 - 0x333d0fff  RawCamera armv7  <98fb7b5042b2314b86f4be8d2881bd04> /System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x33693000 - 0x33697fff  AggregateDictionary armv7  <3a3a33f3a05538988c6e2bb363dc46a8> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
    0x3369c000 - 0x336bcfff  libxslt.1.dylib armv7  <39348471007e39dab80af68b08390456> /usr/lib/libxslt.1.dylib
    0x337e7000 - 0x337f8fff  libxpc.dylib armv7  <ccf25b1e49ce3b2fa58d8c8546755505> /usr/lib/system/libxpc.dylib
    0x337f9000 - 0x33800fff  AssetsLibraryServices armv7  <0703f561f9a038b6850d6e93bba7e5f4> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
    0x338d9000 - 0x33958fff  libsqlite3.dylib armv7  <bf01f5ed47b033d8bde30d735ff44416> /usr/lib/libsqlite3.dylib
    0x33984000 - 0x3398afff  libnotify.dylib armv7  <9406297de3e43742887890662a87ab53> /usr/lib/system/libnotify.dylib
    0x33aac000 - 0x33ac2fff  DictionaryServices armv7  <6ed2e967136f37d4a4b9b318d6c43b83> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
    0x33ac3000 - 0x33ac3fff  liblangid.dylib armv7  <644ff4bcfbf337b5b5859e3f0fc0a9a8> /usr/lib/liblangid.dylib
    0x33acb000 - 0x33b07fff  AppSupport armv7  <311eac85b2a433a884dacba77217b49e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x33cca000 - 0x33ccdfff  CaptiveNetwork armv7  <f5cc4b97ce9432da9426f12621453325> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x33cd1000 - 0x33de8fff  CoreFoundation armv7  <6d450fe923d7387f8b01845e0edd713d> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x33df9000 - 0x33dfafff  libremovefile.dylib armv7  <402f8956975d3b6fb86ab9b31a43242c> /usr/lib/system/libremovefile.dylib
    0x33edb000 - 0x3419cfff  libLAPACK.dylib armv7  <0e94e9a7e7a334649afaccae0f1215a2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dyl ib
    0x341b4000 - 0x341b8fff  IOMobileFramebuffer armv7  <42dbc26828e934acabb4f3b0a35d8250> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
    0x341b9000 - 0x341c3fff  libvMisc.dylib armv7  <e8248c797b9b363594bb652ddf7ce16d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dyli b
    0x341c4000 - 0x341c4fff  libunwind.dylib armv7  <e0a73a57795f3e1698a52ebe6fc07005> /usr/lib/system/libunwind.dylib
    0x341c5000 - 0x341e4fff  libSystem.B.dylib armv7  <0c55744b6f7335eebba4ca2c3d10b43c> /usr/lib/libSystem.B.dylib
    0x341fb000 - 0x342d2fff  CFNetwork armv7  <765a472c824830eea91b8f02d12867e4> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x34324000 - 0x3432efff  libbz2.1.0.dylib armv7  <40e4045fb79e382b8833707746cf28b1> /usr/lib/libbz2.1.0.dylib
    0x3432f000 - 0x343b5fff  CoreMotion armv7  <6a9355d5a8e238b5b8f193605d509e15> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x343bf000 - 0x34410fff  libstdc++.6.dylib armv7  <c352af5a742e3c7a8d4d7e5f6f454793> /usr/lib/libstdc++.6.dylib
    0x349a8000 - 0x349a9fff  libsystem_sandbox.dylib armv7  <66e985f3eea03ef08afb7cf4c153f76e> /usr/lib/system/libsystem_sandbox.dylib
    0x349aa000 - 0x349aefff  libcache.dylib armv7  <d6a7436ed8dc33d795c9b42baf864882> /usr/lib/system/libcache.dylib
    0x349bb000 - 0x34a18fff  StoreServices armv7  <628fbbc73ed93730962c53bfbfde6794> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x34a45000 - 0x34ab5fff  CoreImage armv7  <86ac6f5a267637b6b7f8a831dfc7c64b> /System/Library/Frameworks/CoreImage.framework/CoreImage
    0x34bde000 - 0x34be0fff  libCoreFSCache.dylib armv7  <808518e0fbf539af8489f028ca5198c7> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
    0x34c28000 - 0x34dcefff  CoreData armv7  <b0215b6d4d143859a2b313ecade095ec> /System/Library/Frameworks/CoreData.framework/CoreData
    0x34fc4000 - 0x3500dfff  AddressBook armv7  <b17a2962e9043e0385c3c2c652155f2b> /System/Library/Frameworks/AddressBook.framework/AddressBook
    0x35127000 - 0x35130fff  libMobileGestalt.dylib armv7  <4a15e845dc6f3a4a980de66c1cc44c42> /usr/lib/libMobileGestalt.dylib
    0x35172000 - 0x3521ffff  libxml2.2.dylib armv7  <58d47f064e0232119f4b838ad659f9c1> /usr/lib/libxml2.2.dylib
    0x35220000 - 0x352effff  libGLProgrammability.dylib armv7  <49607ffe4ee9389494285a213e392924> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x35373000 - 0x35379fff  MobileIcons armv7  <ed1b46f917903c9b9baaa2be4392dafe> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x35382000 - 0x35444fff  Celestial armv7  <2a59586b0ae937c3b25fe526924aa885> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
    0x3595a000 - 0x359a3fff  libc++.1.dylib armv7  <5b690e5dd5a43a7fb166ade9fe58a7a4> /usr/lib/libc++.1.dylib
    0x359a4000 - 0x35e46fff  UIKit armv7  <d72bcc68e76a3a55a963590cdcffe8cd> /System/Library/Frameworks/UIKit.framework/UIKit
    0x35e73000 - 0x35e7bfff  ProtocolBuffer armv7  <0e846afacf823d2b8c029cc3010a8253> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x35ece000 - 0x35ecefff  libkeymgr.dylib armv7  <ebd2dddf55d83cf48a18913968775960> /usr/lib/system/libkeymgr.dylib
    0x35ecf000 - 0x36014fff  CoreGraphics armv7  <903545b89a7f311d95100ac7d1d44709> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x361de000 - 0x361edfff  OpenGLES armv7  <e80acc691001301e96101bb89d940033> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x362d2000 - 0x36816fff  FaceCoreLight armv7  <f326d88709683520b251dc53cb847c11> /System/Library/PrivateFrameworks/FaceCoreLight.framework/FaceCoreLight
    0x3681e000 - 0x36a02fff  AudioToolbox armv7  <c91e27850452330ea804db6408840fd2> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x36a52000 - 0x36ac6fff  MediaControlSender armv7  <87315c54b2293ab589950341ff91b45d> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
    0x36b7d000 - 0x36eecfff  TextInput armv7  <8d7f24642c7634cc8e3a6e65f1dcd98e> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
    0x36eed000 - 0x36eedfff  libgcc_s.1.dylib armv7  <eb82984fa36c329387aa518aa5205f3d> /usr/lib/libgcc_s.1.dylib
    0x36eee000 - 0x36efffff  DataAccessExpress armv7  <e6144ba265da3bb7b9a263aa1a29b054> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x36f0c000 - 0x36f0ffff  libsystem_network.dylib armv7  <356cb66612e836968ef24e6e5c3364cc> /usr/lib/system/libsystem_network.dylib
    0x36f10000 - 0x36f5afff  libvDSP.dylib armv7  <441b42aca07b3da39feab25f8349918f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
    0x36f5b000 - 0x36f63fff  MobileWiFi armv7  <b76c3e9fb78234c392058250d4620e72> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
    0x36f7d000 - 0x36f82fff  libcopyfile.dylib armv7  <52e874396c393ed29099789ce702cfe2> /usr/lib/system/libcopyfile.dylib
    0x37015000 - 0x3702bfff  libsystem_kernel.dylib armv7  <7ac5560851ce3cb3981068092074b409> /usr/lib/system/libsystem_kernel.dylib
    0x3702c000 - 0x371e9fff  ImageIO armv7  <02e3578171fa3b6a969b244275fd2bab> /System/Library/Frameworks/ImageIO.framework/ImageIO
    0x37254000 - 0x37255fff  libdnsinfo.dylib armv7  <9aede8d6579d3430ac39ae5f95cce498> /usr/lib/system/libdnsinfo.dylib
    0x372de000 - 0x372f4fff  EAP8021X armv7  <fffe86a22bc434a6ae84f23bfecef9d6> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
    0x372f5000 - 0x3743efff  libicucore.A.dylib armv7  <b70646b63f1f3b33896dd8cb91b8dab1> /usr/lib/libicucore.A.dylib
    0x374a9000 - 0x37c67fff  WebCore armv7  <814351ff217e3425a8e532c2e2251f73> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x37de6000 - 0x37de9fff  CoreTime armv7  <a398de5ba1e43a11b7008e9bb5a7f6fe> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
    0x37dea000 - 0x37deffff  libGPUSupportMercury.dylib armv7  <3c1cc3175c403ace8fcbd3826bd43807> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
    0x380b2000 - 0x3818afff  vImage armv7  <caf3648be2933384b6aa1ae7408ab4f0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage

    3 months later, project is still on hold due to this bug and we can not release to the App Store.
    Chris, is there anything you can do? It is a confimed bug now (Nimit Jain confirmed this after reproducing)
    https://bugbase.adobe.com/index.cfm?event=bug&id=3603922

  • Air application crashes

    flash professional cs6 in use Air 3.4  sdk  i cant complile in adobe 3.4  , i will compile  in  same versionof adobe air and flash sdk 2.5 that  apllication work proparly and  botha versionwill be deffrent that application crashed.
    and adobe air sdk 2.5  and  adobe air version is 3.4 in this application  crashed.

    Could you try this against the released 3.2 version of AIR and our 3.3 beta to see if it still occurs?  If so, please open a new bug report on this over at bugbase.adobe.com?  Include any sample code or application to help us easily reproduce the problem.  If you'd like to keep your code private, please feel free to send it to me directly at [email protected]  In addition, if you can give us a .dmp of this crash it could be very helpful. 
    Please post back with the URL so that others affected can add their comments and votes.

Maybe you are looking for