IOS app crashes on return from cameraUI - a memory allocation problem?

hey all
trying to finish my first app
when running on iOS, the app SOMETIMES crashes after returning from cameraUI (either "use"/MediaEvent.COMPLETE or "cancel"/Event.CANCEL).
when i exit some other running apps on my iPhone 3Gs (and not that many are open), the problem goes away, which makes me think this is some memory allocation problem
in that aspect, can i trust the iOS to exit inactive applications to allocate more memory for my, currently active, AIR app?
(there is no memory leak)
this is an iPhone 3Gs running os version 4.3.5
the app was made with Flash Pro 5.5 overlayed with the AIR 3.1 sdk, and deployed using the "deploy for app store" type (which should be the most bug-free)
(no crashes on Android or desktop versions)
anyone had this cameraUI problem or a similar one where an app crashes if more then some numbers of apps are open?
thanx
Saar

I don't get this. Its beyond frustrating:
we are not talking about using an uncommon phone capability, access to a phones camera is about the most basic native level of access you would be looking for in a mobile framework
we are not talking about an edge case in usage, just trying to take a simple picture consistently
we are not talking about a feature issue where it doesn't quite work the way you want, it crashes the whole app hard! 
we are not talking about a hard to recreate, only happening to a few people case - it seems from what I have read the Camera integration is fundamentally broken and I have spent days researching this and only found frustration from people out there
we are not talking about an issue that does not have consequences - in several places on this forum and others people have emphasized how it is affecting their platform decisions, ability to submit apps. You even have people on this board recommending that not to use Flex Mobile and move to other platforms. Not what you want to be happening to when you are at the adoption phase of a new product.
And that is the response - on this thread and here http://forums.adobe.com/message/4125590#4125590 - we know its an issue but we don't know when it will be fixed and no proactive communication on status - only a growing body of people like me getting increasingly frustrated. What does it take for an issue to be a show stopper? priority 1? affecting customer decisions priority?
In my case I am in place where I am trying to make a platform decision and since this experience has happened I have subscribed to the live feed for this forum and as many relevant Adoble blogs, news feed etc. as I could find. I did this to get a feel for how well Adobe is supporting the mobile development on the AIR platform. Something increasingly important given recent decisions.
My perception so far is quite poor especially for a recently released product, i.e. 4.6 release. In fact the release that finally addresses performance enough to make AIR mobile development a risk free decision. You would expect Adobe to be all over the boards like this - with core developers, platform experts contributing actively. My perception, rightly or wrongly, is of a community trying to support itself without much help, or clear communication from Adobe. In fact if you look at the the articles coming out of Adobe recently its all phonegap, html5 etc. It does not fill you with confidence for the future.
To be clear - I have had a great experience with actionscript, flex etc and as a company we have developed the backend portion of our platform solely on Flex. I don't believe that we could have done it any other way and even now when I look at the alternatives for web development I feel vindicated in our decision.
However, this rant is caused by a genuine frustration and fear. I don't expect this to get a meaningful response but maybe if there are enough voices it will create an overall improvement.
Sean

Similar Messages

  • AIR app crashes on iOS after returning from CameraUI photo capture

    So, I've been running into this problem in one way or another for as long as we've had CameraUI access. It seems that each time another version of AIR comes out Adobe claims the problem has been fixed, and each time I find that the problem hasn't. So, here we go:
    I'm running an AIR 3.4 application on a range of devices: iPod Touch (previous generation), iPhone 5, iPhone 4S, iPhone 4, and iPad 2. All the test devices are loaded with the latest version of iOS. On every one of them, if the user takes a few photos in a row the application crashes by quietly returning to the desktop. On Android devices, the same happens when I take even a single photo. In fact, when running the application in the debugger I can see that the process terminates not when the app returns from CameraUI, but as soon as the native Camera is invoked.
    This problem has been going on forever. What is the fix?

    Just going on your original post about Android quitting as soon as the camera is invoked I did a quick test.
    FB Test code:
    package
        import flash.display.Bitmap;
        import flash.display.Loader;
        import flash.display.Sprite;
        import flash.display.StageAlign;
        import flash.display.StageScaleMode;
        import flash.events.Event;
        import flash.events.IOErrorEvent;
        import flash.events.MediaEvent;
        import flash.media.CameraUI;
        import flash.media.MediaPromise;
        import flash.media.MediaType;
        public class TestingCameraRoll extends Sprite
            private var cam:CameraUI;
            private var _imgNum:int = 1;
            public function TestingCameraRoll()
                super();
                stage.scaleMode = StageScaleMode.NO_SCALE;
                stage.align = StageAlign.TOP_LEFT;
                addEventListener(Event.ACTIVATE, _onActivated);
            protected function _onActivated(event:Event):void
                removeEventListener(Event.ACTIVATE, _onActivated);
                trace("App activated, starting camera.");
                cam = new CameraUI();
                cam.addEventListener(Event.CANCEL, _captureMobileCancel, false, 0, true);
                cam.addEventListener(MediaEvent.COMPLETE, _captureMobileComplete, false, 0, true);
                cam.launch(MediaType.IMAGE);
            protected function _captureMobileComplete(event:MediaEvent):void
                trace("_captureMobileComplete: " + event.type);
                var mp:MediaPromise = MediaPromise(event.data);
                var imgLoader:Loader = new Loader();
                imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, _imgLoadHandler);
                imgLoader.addEventListener(IOErrorEvent.IO_ERROR, _errHandler);
                imgLoader.loadFilePromise(mp);
            protected function _imgLoadHandler(event:Event):void
                trace("imgLoadHandler - width:" + event.target.width + " height:" + event.target.height);
                var bm:Bitmap = new Bitmap(Bitmap(event.target.content).bitmapData);
                bm.width = stage.fullScreenWidth;
                bm.height = stage.fullScreenHeight;
                bm.name = "img_" + _imgNum++;
                addChild(bm);
                trace("Added image: " + bm.name);
                cam.launch(MediaType.IMAGE);
            protected function _captureMobileCancel(event:Event):void
                trace("Capture cancelled")
            protected function _errHandler(event:Event):void
                trace("Error: " + event);
    All that does is continuously request to take a picture and then dump it on the display list at full size. I didn't do proper size/orientation compensation, I just sized down so I could verify it took the photo. The goal was to #1 successfully load the camera, #2 take a picture, #3 receive the data, #4 pile them up in full resolution (albeit scaled) on the display list without crashing.
    My SGS3 started to get slow after 15 pictures but here's the trace:
    App activated, starting camera.
    [SWF] TestingCameraRoll.swf - 3,029 bytes after decompression
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_1
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_2
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_3
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_4
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_5
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_6
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_7
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_8
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_9
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_10
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_11
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_12
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_13
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_14
    _captureMobileComplete: complete
    imgLoadHandler - width:3264 height:2448
    Added image: img_15
    Capture cancelled
    App never crashed, and this is running in debug mode. That's 15 8MP full size images stacked on the display list.
    I use AIR 3.5 release on this (3.5.0.600, not even the latest 3.5.0.880).

  • I have just updated my iPad to IOS 8.1.3 when I now try to open the emails nothing comes up and then the app crashes and returns to the home page. What should I do?

    I have just updated my iPad to IOS 8.1.3 when I now try to open the emails nothing comes up and then the app crashes and returns to the home page. What should I do?

    Since yesterday morning about 11:00 I have been having TERRIBLE email problems on this iPad 3G. Email comes in (I hear the sound) but nothing displays -- no folders, no content, no nothing in e-mail. The blank email screen shows up and then disappears after about 10 seconds, taking me back to the Home Screen.
    Right now, the only way I can see email on this device is to log onto AOL via the AOL app.
    I have been doing a lot of online reading about the problem. It has to do with iOS 8.1.3 and it affects older iPads and iPhones. I'm having no problems on my iPod touch, which -- fortunately -- is so old it cannot update its iOS 6.
    I waited to update the iOS on this iPad until iOS 8 was "mature." That was about 2 weeks ago.
    Anybody know know if Apple is aware? working on a solution?

  • Is anybody else having their Adobe AIR iOS app crash within the first second of opening it?

    Is anybody else having their Adobe AIR iOS app crash within the first second of opening it?
    I am using iPhone 6, iOS 8.1.3, with a development certificate.
    With Adobe AIR SDK 16.0.0.283 and now with 17.0.0.93, after compiling the app (whether in release mode or debug mode), before the app getTimer() can ever reach 999 milliseconds the app will crash. No matter what code I have, it is just crashing before the runtime can ever reach the first second.
    Anybody else having this kind of behavior?

    Chris,
    Thanks for your prompt reply. I have found the way to reproduce. It is about interfaces, and when I try to call a method through an interface the app crashes. I think that it is related to having an interface with many parameters. I have logged the bug here:
    Bug#3935199 - iOS App crashes when calling an objects method through interface

  • SDK 16 using new AOT on iOS issues: unresponsive on return from CameraRoll, list skins confused

    I am having issues with the "-useLegacyAOT no" (now default) and iOS apps. Under SDK 15 using "-useLegacyAOT yes" no issues. With SDK 16 the app has issues with many things, for example datagrid/list skins don't work - if you manually skin using setRendererStyle, it seems ALL the skin states are using the Selected skins, and the upSkin state uses the selectedUpSkin skin as far as I can make out (in tests this seems to be the case). Another is the app becomes unresponsive to touch on returning from cameraRoll, camera to take a picture or video to record a video - my app is full screen, when it returns from one of these, it is no longer full screen (the top info bar is visible), and I am using stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE when returning from these calls,  which worked under the legacy AOT. Since the app is unresponsive, the only option is to reboot the iphone and restart the app - not really an option.

    Just catching up with testing using the latest SDK 17 (115) and finding the following: With SDK 16/17 on iOS the app has issues with datagrid/list skins - if you manually skin using setRendererStyle, it seems ALL the skin states are using the Selected skins, and the upSkin state uses the selectedUpSkin skin as far as I can make out (in tests this seems to be the case).
    I am also noticing that sometimes on return from the camera, cameraroll, and video camera, the app will sometimes hang - not always. I am continuing to test. The hang actually closes the app quickly.

  • IOS App Crash

    I am hoping I can get some help on my app crashing.  I was able to connect to XCODE and get the crash report
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x...
    From what I can tell, this is about an object pointing to an invalid memory space.  It seems to happen at random and the Adobe debugger does not show anything.  I am not sure if this is a native extension I am using or how to go about troubleshooting it.  Hoping someone can provide some insight into some things I can try to resolve it.  I can post the entire crash report if that will help.
    Thanks

    Made a bare bones project.  It is in Flash CS6.  1 button and 1 movieclip on the stage.  If I click the button first, I see the button down state.  If I click the movieclip first, next time I click the button, it works (shows native extension) but doesn't show DOWN state when pressed.  Repeatedly launching the native extension causes the app to crash around the 10th time.  So the issues are two:
    1. Launching the ANE from a movieclip causes mouse events to stop firing and hence mouse down state of a button doesn't work.  Touch events still work but they don't show button states
    2. Repeating to launch this ANE causes app to crash.  Now to stress test the native alert and list to see if they all cause crashes.  Really wish there was basic UI like this we could use.
    import flash.events.TouchEvent;
    import flash.ui.*;
    import pl.mateuszmackowiak.nativeANE.NativeDialogEvent;
    import pl.mateuszmackowiak.nativeANE.NativeDialogListEvent;
    import pl.mateuszmackowiak.nativeANE.alert.NativeAlert;
    import pl.mateuszmackowiak.nativeANE.dialogs.NativeListDialog;
    import pl.mateuszmackowiak.nativeANE.dialogs.NativeTextField;
    import pl.mateuszmackowiak.nativeANE.dialogs.NativeTextInputDialog;
    import pl.mateuszmackowiak.nativeANE.notification.NativeNotifiction;
    import pl.mateuszmackowiak.nativeANE.progress.NativeProgress;
    import pl.mateuszmackowiak.nativeANE.properties.SystemProperties;
    import pl.mateuszmackowiak.nativeANE.toast.Toast;
    Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
    var textInputDialog:NativeTextInputDialog;
    var v:Vector.<NativeTextField>;
    var myinput:NativeTextField;
    var buttons:Vector.<String>;
    function test_function(event:TouchEvent):void
              textInputDialog = new NativeTextInputDialog();
              textInputDialog.addEventListener(NativeDialogEvent.CLOSED,onCloseTextInput);
              v = new Vector.<NativeTextField>();
              myinput = new NativeTextField("input");
              v.push(myinput);
              buttons = new Vector.<String>();
              buttons.push("OK");
              textInputDialog.setTitle("myTitle");
              textInputDialog.show(v,buttons,true);
    function onCloseTextInput(event:NativeDialogEvent):void
              event.preventDefault();
              for each (var n:NativeTextField in NativeTextInputDialog(event.target).textInputs)
                        trace("n.text");
              textInputDialog.removeEventListener(NativeDialogEvent.CLOSED,onCloseTextInput);
    mybutton.addEventListener(TouchEvent.TOUCH_BEGIN, test_function);
    mymc.addEventListener(TouchEvent.TOUCH_BEGIN, test_function);

  • Apps crashing on wake from sleep

    Since upgrading to Snow Leopard on my 2008 unibody Macbook, I've been having wake-from-sleep issues. I'm hoping that someone will be able make sense of the crash logs
    Sporadically, when I wake it from sleep, an app will crash, quit unexpectedly. The app will restart fine and run normally after that. It only happens occasionally, twice today, once yesterday, but not for a week before that. The apps involved so far have been Safari 4.03, Mail 4.1, Textedit 1.6, and activity Monitor 10.6, as well as Dashboard client.
    The crash log doesn't help me because I don't really know what to look for. I eliminated several of background processes that were mentioned in some of the early crash logs. Permissions repair, disk repair, and Apple Hardware test all negative.
    Has anyone else been having problems like this?
    Here are two recent logs: This is when Safari crashed.
    Process: Safari [118]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.3 (6531.9)
    Build Info: WebBrowser-65310900~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [83]
    Date/Time: 2009-10-09 18:42:46.029 -0400
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Sleep/Wake UUID: 9A65BFCD-D42E-4AC7-892C-7ACADA3C8C98
    Interval Since Last Report: 1552 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 228767 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: E1BAFE49-548B-4175-AD3E-D3621A4FD2AF
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000080000000000
    Crashed Thread: 4
    Thread 4 Crashed:
    0 ??? 0x0000080000000000 0 + 8796093022208
    1 com.apple.CoreFoundation 0x00007fff87f7692b __CFBasicHashStandardCallback + 315
    2 com.apple.CoreFoundation 0x00007fff87f64b3c _CFBasicHashFindBucket1 + 556
    3 com.apple.CoreFoundation 0x00007fff87f792a6 CFBasicHashRemoveValue + 518
    4 com.apple.SystemConfiguration 0x00007fff81a585dc __SCNetworkReachabilityUnscheduleFromRunLoop + 424
    5 com.apple.SystemConfiguration 0x00007fff81a5841c SCNetworkReachabilityUnscheduleFromRunLoop + 117
    6 com.apple.CFNetwork 0x00007fff85a5b764 _CFTypeUnscheduleFromMultipleRunLoops + 498
    7 com.apple.CoreFoundation 0x00007fff87f7fffe CFArrayApplyFunction + 222
    8 com.apple.CFNetwork 0x00007fff85a6064b SocketStream::close(void const*) + 197
    9 com.apple.CoreFoundation 0x00007fff87f82bd2 _CFStreamClose + 98
    10 com.apple.CFNetwork 0x00007fff85a7c498 HTTPReadFilter::streamClose(__CFReadStream*) + 40
    11 com.apple.CoreFoundation 0x00007fff87f82bd2 _CFStreamClose + 98
    12 com.apple.CFNetwork 0x00007fff85a7c2d5 NetConnection::shutdownConnectionStreams() + 91
    13 com.apple.CFNetwork 0x00007fff85a94caa NetConnection::errorOccurred(CFStreamError*) + 100
    14 com.apple.CFNetwork 0x00007fff85a75d6e HTTPNetConnection::responseStreamCallback(void*, __CFReadStream*, unsigned long) + 404
    15 com.apple.CFNetwork 0x00007fff85a75b71 NetConnection::connectionResponse(__CFReadStream*, unsigned long) + 93
    16 com.apple.CoreFoundation 0x00007fff88001663 _signalEventSync + 115
    17 com.apple.CoreFoundation 0x00007fff880015d4 cfstream_solosignalEventSync + 116
    18 com.apple.CFNetwork 0x00007fff85a7502b HTTPReadFilter::socketReadStreamCallback(unsigned long) + 309
    19 com.apple.CFNetwork 0x00007fff85a74ee1 HTTPReadFilter::httpRdFilterStreamCallBack(_CFReadStream*, unsigned long, void*) + 49
    20 com.apple.CoreFoundation 0x00007fff88001663 _signalEventSync + 115
    21 com.apple.CoreFoundation 0x00007fff88002141 cfstream_sharedsignalEventSync + 417
    22 com.apple.CoreFoundation 0x00007fff87fa2281 __CFRunLoopDoSources0 + 1361
    23 com.apple.CoreFoundation 0x00007fff87fa0879 __CFRunLoopRun + 873
    24 com.apple.CoreFoundation 0x00007fff87fa003f CFRunLoopRunSpecific + 575
    25 com.apple.Foundation 0x00007fff82f1451f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    26 com.apple.Foundation 0x00007fff82e94f65 _NSThread__main_ + 1429
    27 libSystem.B.dylib 0x00007fff828caf66 pthreadstart + 331
    28 libSystem.B.dylib 0x00007fff828cae19 thread_start + 13
    This one is from earlier today when Textedit crashed.
    Process: TextEdit [207]
    Path: /Applications/TextEdit.app/Contents/MacOS/TextEdit
    Identifier: com.apple.TextEdit
    Version: 1.6 (264)
    Build Info: TextEdit-2640000~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [83]
    Date/Time: 2009-10-09 07:02:50.680 -0400
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Sleep/Wake UUID: 6CA80CB4-8BCC-4FD0-A0B7-2CC4258E9907
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000080000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ??? 0x0000080000000000 0 + 8796093022208
    1 com.apple.CoreFoundation 0x00007fff87f7692b __CFBasicHashStandardCallback + 315
    2 com.apple.CoreFoundation 0x00007fff87f64b3c _CFBasicHashFindBucket1 + 556
    3 com.apple.CoreFoundation 0x00007fff87f7fbcc CFBasicHashGetCountOfKey + 156
    4 com.apple.CoreFoundation 0x00007fff87f7fb07 CFSetContainsValue + 119
    5 com.apple.CoreFoundation 0x00007fff87fb7383 CFRunLoopAddObserver + 339
    6 com.apple.AppKit 0x00007fff8743029f -[NSWindow _postWindowNeedsDisplay] + 227
    7 com.apple.AppKit 0x00007fff8742e611 -[NSView setNeedsDisplayInRect:] + 363
    8 com.apple.AppKit 0x00007fff874709b7 -[NSTextView setNeedsDisplayInRect:avoidAdditionalLayout:] + 1315
    9 com.apple.AppKit 0x00007fff875d80d0 -[NSTextView drawInsertionPointInRect:color:turnedOn:] + 1828
    10 com.apple.AppKit 0x00007fff875d6504 -[NSTextView(NSPrivate) _blinkCaret:] + 1060
    11 com.apple.AppKit 0x00007fff875dc3e2 _blinkCaretTimerAction + 46
    12 com.apple.CoreFoundation 0x00007fff87fa1a78 __CFRunLoopRun + 5480
    13 com.apple.CoreFoundation 0x00007fff87fa003f CFRunLoopRunSpecific + 575
    14 com.apple.HIToolbox 0x00007fff84c88c4e RunCurrentEventLoopInMode + 333
    15 com.apple.HIToolbox 0x00007fff84c88a53 ReceiveNextEventCommon + 310
    16 com.apple.HIToolbox 0x00007fff84c8890c BlockUntilNextEventMatchingListInMode + 59
    17 com.apple.AppKit 0x00007fff87454520 _DPSNextEvent + 718
    18 com.apple.AppKit 0x00007fff87453e89 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    19 com.apple.AppKit 0x00007fff87419a7d -[NSApplication run] + 395
    20 com.apple.AppKit 0x00007fff87412798 NSApplicationMain + 364
    21 com.apple.TextEdit 0x0000000100000fb8 0x100000000 + 4024

    I had this problem also, it has been driving me crazy since I upgraded to Snow Leopard in October. I thought that it was maybe the upgrade install type so I wiped the HD and did a clean install but still had the same problem with iTunes, Skype, Google Notifier, Safari and Net News Wire continually crashing after sleep.
    Under advice I tried a SMC reset but this did not help either.
    Today I called apple care and they suggested a PRAM reset, after a couple of hours testing the problem seems to be fixed.
    To do a PRAM reset on a late 2008 MacBook.....
    1. Power off the MacBook (shutdown)
    2. Unplug mains power lead
    3. Count to 10
    4. Plug the mains power lead back in
    5. Press the power button to start the MacBook
    6. Immediately press and hold down the CMD, ALT, P and R keys
    7. You will hear the startup chime then the screen will go off (keep holding the keys)
    8. You will hear the startup chime again then the screen will go off (keep holding)
    9. You will hear the startup chime a third time
    10. Now release the keys and let the MacBook startup
    11. Hopefully no more crashes after sleep
    Hope this works for you
    Mark

  • Power manager crashes after returning from standby mode.

    I have a T400 2767 WU6 running Windows 7 Pro-64bit.. After returning from standby mode, power manager crashes (version 3). All the software installed is supposed to be compatible with win7 pro 64bit.
    Any help would be greatly appreciated.

    Does this issue appear from the beginning?
    Possibly the OS was installed several time ago and now the registry entries are corrupt.
    Therefore the system busy egg timer could appear.
    Im not 100% sure it will help but possibly you should reinstall the whole OS
    On the fresh installed OS all should works much faster

  • Most iOS apps crashing on startup

    Hi All,
    As of this morning, most of the iOS apps (Safari, Mail, App Store, Settings, etc..) on my iphone 4 (running 4.3.5) have started crashing on startup.  One solution I found mentioned installing an app directly to the phone (not through iTunes) as a fix for this issue.  However, the App Store is one of the apps that crashes on startup, so this solution won't work in this case.  Is there anything else I can do to fix the issue?
    Thanks,
    Garrett

    I have had the same problem..
    I just downloaded a new app and it prompted me to enter my existing itunes account or create a new one.  I was a mobileme user...not sure if this makes a difference.
    By downloading a new free app I was prompted to enter my iTunes name and PW and after a few spins of the wheel I was able to open any other apps without a problem
    Good Luck ios5
    We need it!
    E

  • Apps Crashing...not even opening and other problems

    I read through the 25 pages of the Unresponsive iPhone thread...however, I did not find anyone with this issue since updating to 3.1:
    All my apps crash. I try to open them, they flash open and then close. All Apps. I can still connect to internet in Safari.
    My calls are hit and miss. Sometimes I can make a call, sometimes I can. Same situation for receiving them. Texting is doing the same thing. I have reset my phone many times....so improvement.
    Anyone out there have any suggestions or know if Apple is going to fix these issues with 3.1?

    I can't answer your question regarding the calls, but I can help out with your apps crashing. To initially fix it, delete one of your apps off of the phone, then reinstall it. I dont' know why but this should fix all of them. Try transferring purchases from Iphone to Itunes. Just click file and transfer purchases from phone.

  • App crashes when jumping from article with video to other article with video

    I read a thread about this issue earlier today that dates back to January in which an Adobe employee said that this issue has been fixed, but unfortunately I've been experiencing it right now. I have multiple articles that include videos and another article with many large photos. When I try navigating from one article to the other the Content Viewer crashes and goes back to the home screen. According to the thread this is known as memory issue and I followed the suggestions to reinstall the Viewer and restart the iPad but it didn't help. Right now the only way to use the app is to navigate to the Cover and continue from there which is defeating the point of having a navigation all throughout the app. I can't just take out the videos or the photos to reduce the file size. Any advice? Thanks!

    Hello
    Sometimes the Adobe Viewer, or a custom Viewer, appears to crash. However, the iOS is in fact shutting it down because of a low memory state. You can confirm whether you have this issue by syncing an affected iPad to a Mac. Then retrieve the logs to see if there are LowMemory-[time stamp].log files. Here is where such log files, as well as crash log files, is found:
    Users/[user name]/Library/Logs/CrashReporter/MobileDevice/[device name]
    Look for a LowMemory log file with a time stamp that corresponds to the application's exit. Open it in a text editor and look for a line like the following:
    viewer <42d0b24207f7d625b2fefef7549afce3>   33490 (jettisoned) (active)
    The numbers can vary. However, if the line indicates that the "viewer" process was "jettisoned" while "active," the OS closed the process because of a low memory state. The most likely reason for this is that your viewer is reading into memory images that are larger than 1024 x 1024. Apple recommends against applications loading any image larger than this size as it contributes to a low memory state on the device. It can result in what appear to be application crashes. Review your folio source files and ensure that no images of greater size are used. If they are, simply resample them, and republish your content.
    The low memory state can also be the result of having too many applications running at once. Shut down applications you are not actively using to free up more memory.
    How to free up memory on your iPad
    1. From the home screen, double-click the Home button to display recently used applications.
    2. Tap and hold one of the applications until a red minus appears above it.
    3. Tap the red minus for all apps that are not currently needed.
    4. Tap anywhere above the list of recently used apps, to return to the home screen.
    Laxman

  • Crash when returning from terminal services

    I have an applet running on my XP system under 1.5.0_08. I remotely terminal service into the machine and things work fine with interacting with the applet. When I return to the local machine and login to display my existing session and start to interact with the applet window, the JVM crashes. I'm not sure if I have enough information to submit it yet. See log below:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d0afc8d, pid=2264, tid=1052
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_08-b03 mixed mode, sharing)
    # Problematic frame:
    # C [awt.dll+0xafc8d]
    --------------- T H R E A D ---------------
    Current thread (0x03d7bb00): JavaThread "Java2D Disposer" daemon [_thread_in_native, id=1052]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000005
    Registers:
    EAX=0x00000005, EBX=0x2b3f4e48, ECX=0x03c81434, EDX=0x0533e668
    ESP=0x0ffdf894, EBP=0x0ffdf8c8, ESI=0x03c81430, EDI=0x03c81434
    EIP=0x6d0afc8d, EFLAGS=0x00010216
    Top of Stack: (sp=0x0ffdf894)
    0x0ffdf894: 03d7bbc0 05a3b710 6d0b3d55 05a3b710
    0x0ffdf8a4: 6d03499c 03d7bbc0 05a3b710 03d7bb00
    0x0ffdf8b4: 2ab5f1d0 6d035437 03d7bbc0 05a3b710
    0x0ffdf8c4: 00000000 0ffdf904 063e832f 03d7bbc0
    0x0ffdf8d4: 0ffdf90c 6d03497f 00000000 05a3b710
    0x0ffdf8e4: 00000000 0ffdf8e8 00000000 0ffdf920
    0x0ffdf8f4: 2b3f5020 00000000 2b3f4e48 0ffdf914
    0x0ffdf904: 0ffdf940 063e29e3 2b3f4fc0 063e6509
    Instructions: (pc=0x6d0afc8d)
    0x6d0afc7d: 5e c2 04 00 56 8b f1 57 8b 46 04 8d 7e 04 8b cf
    0x6d0afc8d: ff 10 ff 4e 20 8b 46 20 85 c0 7f 42 53 33 db 39
    Stack: [0x0fee0000,0x0ffe0000), sp=0x0ffdf894, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [awt.dll+0xafc8d]
    j sun.java2d.DefaultDisposerRecord.invokeNativeDispose(JJ)V+0
    j sun.java2d.DefaultDisposerRecord.dispose()V+8
    j sun.java2d.Disposer.run()V+19
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.java2d.DefaultDisposerRecord.invokeNativeDispose(JJ)V+0
    j sun.java2d.DefaultDisposerRecord.dispose()V+8
    j sun.java2d.Disposer.run()V+19
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x05b082b8 JavaThread "MessageAlerter-14" [_thread_blocked, id=2948]
    0x03014488 JavaThread "Thread-40" [_thread_blocked, id=5976]
    0x03c95618 JavaThread "Thread-29" [_thread_blocked, id=7628]
    0x04d6e8f8 JavaThread "Thread-28" [_thread_blocked, id=6888]
    0x188dfc18 JavaThread "Thread-27" [_thread_blocked, id=3204]
    0x028b2f70 JavaThread "Thread-26" [_thread_blocked, id=6088]
    0x0474b748 JavaThread "Thread-25" [_thread_blocked, id=6084]
    0x05c6be30 JavaThread "Thread-24" [_thread_blocked, id=1468]
    0x047354c0 JavaThread "VoiceController.QueueServiceRunnable" [_thread_blocked, id=2688]
    0x039e4468 JavaThread "Thread-23" [_thread_blocked, id=1976]
    0x04977e78 JavaThread "Messenger" [_thread_blocked, id=3868]
    0x021c6bb8 JavaThread "Preferences" [_thread_blocked, id=272]
    0x0282db58 JavaThread "StatusChangeIndicatorThread" [_thread_blocked, id=528]
    0x02f2e220 JavaThread "CommManager" [_thread_blocked, id=2364]
    0x044019d0 JavaThread "SocketReader" [_thread_in_native, id=2164]
    0x04d72858 JavaThread "SocketWriter" [_thread_blocked, id=756]
    0x047568e8 JavaThread "AWT-EventQueue-4" [_thread_blocked, id=3668]
    0x024feb08 JavaThread "IdleThread" [_thread_blocked, id=548]
    0x030f0e10 JavaThread "thread applet-com.bantu.banter.client.ChatApplet" [_thread_blocked, id=1588]
    0x0338e4d8 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=3400]
    0x03a66e10 JavaThread "TimerQueue" daemon [_thread_blocked, id=2796]
    0x04623978 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=2464]
    0x03c85e68 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3196]
    0x03972a50 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=3172]
    0x03018528 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2712]
    0x03d38be0 JavaThread "AWT-Shutdown" [_thread_blocked, id=3592]
    =>0x03d7bb00 JavaThread "Java2D Disposer" daemon [_thread_in_native, id=1052]
    0x03b2a240 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2800]
    0x03ca41e0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3568]
    0x03bc36e8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=320]
    0x03ae4e58 JavaThread "Finalizer" daemon [_thread_blocked, id=3596]
    0x03cad150 JavaThread "Reference Handler" daemon [_thread_blocked, id=3276]
    0x03a684a0 JavaThread "main" [_thread_in_native, id=3776]
    Other Threads:
    0x03c8c330 VMThread [id=3708]
    0x03c95d00 WatcherThread [id=1000]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2304K, used 874K [0x20a70000, 0x20ce0000, 0x211d0000)
    eden space 2112K, 41% used [0x20a70000, 0x20b4aa40, 0x20c80000)
    from space 192K, 0% used [0x20c80000, 0x20c80000, 0x20cb0000)
    to space 192K, 0% used [0x20cb0000, 0x20cb0000, 0x20ce0000)
    tenured generation total 28728K, used 16209K [0x211d0000, 0x22dde000, 0x26a70000)
    the space 28728K, 56% used [0x211d0000, 0x221a45a0, 0x221a4600, 0x22dde000)
    compacting perm gen total 8192K, used 3805K [0x26a70000, 0x27270000, 0x2aa70000)
    the space 8192K, 46% used [0x26a70000, 0x26e27408, 0x26e27600, 0x27270000)
    ro space 8192K, 63% used [0x2aa70000, 0x2af7d608, 0x2af7d800, 0x2b270000)
    rw space 12288K, 46% used [0x2b270000, 0x2b810608, 0x2b810800, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x00b53000      C:\Program Files\Bon Echo\firefox.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x60110000 - 0x6017d000      C:\Program Files\Bon Echo\js3250.dll
    0x601d0000 - 0x601f7000      C:\Program Files\Bon Echo\nspr4.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\WSOCK32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x60380000 - 0x603e9000      C:\Program Files\Bon Echo\xpcom_core.dll
    0x602a0000 - 0x602a7000      C:\Program Files\Bon Echo\plc4.dll
    0x602b0000 - 0x602b6000      C:\Program Files\Bon Echo\plds4.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x602d0000 - 0x602ea000      C:\Program Files\Bon Echo\smime3.dll
    0x60200000 - 0x6025a000      C:\Program Files\Bon Echo\nss3.dll
    0x602f0000 - 0x6032e000      C:\Program Files\Bon Echo\softokn3.dll
    0x60330000 - 0x6034f000      C:\Program Files\Bon Echo\ssl3.dll
    0x60360000 - 0x60374000      C:\Program Files\Bon Echo\xpcom_compat.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x10000000 - 0x10044000      C:\Program Files\Matrox Graphics Inc\PowerDesk HF\Matrox.PowerDesk.Hooks.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x60010000 - 0x60022000      C:\Program Files\Bon Echo\components\jar50.dll
    0x60030000 - 0x6003f000      C:\Program Files\Bon Echo\components\jsd3250.dll
    0x60040000 - 0x6004a000      C:\Program Files\Bon Echo\components\myspell.dll
    0x60050000 - 0x6005e000      C:\Program Files\Bon Echo\components\spellchk.dll
    0x60060000 - 0x6008c000      C:\Program Files\Bon Echo\components\xpinstal.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x01700000 - 0x01717000      C:\Program Files\Bon Echo\extensions\[email protected]\components\BrandRes.dll
    0x01720000 - 0x01745000      C:\Program Files\Bon Echo\extensions\[email protected]\components\fullsoft.dll
    0x01770000 - 0x01776000      C:\Program Files\Bon Echo\extensions\[email protected]\components\qfaservices.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\system32\msimtf.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x20000000 - 0x202c5000      C:\WINDOWS\system32\xpsp2res.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x600d0000 - 0x60101000      C:\Program Files\Bon Echo\freebl3.dll
    0x60260000 - 0x6029a000      C:\Program Files\Bon Echo\nssckbi.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\msimg32.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x602c0000 - 0x602c8000      C:\Program Files\Bon Echo\plugins\npnul32.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x6d4f0000 - 0x6d502000      C:\Program Files\Java\jre1.5.0_08\bin\NPJava11.dll
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x6d440000 - 0x6d44c000      C:\Program Files\Java\jre1.5.0_08\bin\jpioji.dll
    0x6d420000 - 0x6d435000      C:\Program Files\Java\jre1.5.0_08\bin\jpinscp.dll
    0x6d450000 - 0x6d468000      C:\Program Files\Java\jre1.5.0_08\bin\jpishare.dll
    0x6d6c0000 - 0x6d85b000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\hpi.dll
    0x6d690000 - 0x6d69c000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\java.dll
    0x6d6b0000 - 0x6d6bf000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\zip.dll
    0x6d000000 - 0x6d169000      C:\Program Files\Java\jre1.5.0_08\bin\awt.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6d240000 - 0x6d27f000      C:\Program Files\Java\jre1.5.0_08\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_08\bin\deploy.dll
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x77260000 - 0x77300000      C:\WINDOWS\system32\urlmon.dll
    0x6d5d0000 - 0x6d5f3000      C:\Program Files\Java\jre1.5.0_08\bin\RegUtils.dll
    0x10450000 - 0x10716000      C:\WINDOWS\system32\msi.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_08\bin\net.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_08\bin\nio.dll
    0x6d1c0000 - 0x6d1e3000      C:\Program Files\Java\jre1.5.0_08\bin\dcpr.dll
    0x74e30000 - 0x74e9c000      C:\WINDOWS\system32\RICHED20.DLL
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x15920000 - 0x1598d000      C:\Program Files\TortoiseSVN\bin\tortoisesvn.dll
    0x6eec0000 - 0x6eee2000      C:\Program Files\TortoiseSVN\bin\libapr.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCR80.dll
    0x6ee60000 - 0x6ee88000      C:\Program Files\TortoiseSVN\bin\libaprutil.dll
    0x6ee50000 - 0x6ee5d000      C:\Program Files\TortoiseSVN\bin\libapriconv.dll
    0x15990000 - 0x1599c000      C:\Program Files\TortoiseSVN\bin\intl3_svn.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCP80.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x767f0000 - 0x76817000      C:\WINDOWS\system32\schannel.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x75f80000 - 0x7607d000      C:\WINDOWS\system32\browseui.dll
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x76980000 - 0x76988000      C:\WINDOWS\system32\LINKINFO.dll
    0x77760000 - 0x778cf000      C:\WINDOWS\system32\SHDOCVW.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_08\bin\jsound.dll
    0x6d4a0000 - 0x6d4a8000      C:\Program Files\Java\jre1.5.0_08\bin\jsoundds.dll
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\DSOUND.dll
    0x028f0000 - 0x02918000      C:\WINDOWS\system32\rsaenh.dll
    0x74b30000 - 0x74b76000      C:\WINDOWS\system32\webcheck.dll
    0x7dc30000 - 0x7df20000      C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\system32\msls31.dll
    0x6d5b0000 - 0x6d5c2000      C:\Program Files\Java\jre1.5.0_08\bin\NPOJI610.dll
    0x6d3c0000 - 0x6d3df000      C:\Program Files\Java\jre1.5.0_08\bin\jpeg.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_08 -Djavaplugin.nodotversion=150_08 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~1.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_08 -Djavaplugin.nodotversion=150_08 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE15~1.0_0\bin;C:\Program Files\Bon Echo;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\svn\BantuTrunk\lib;.
    USERNAME=steve
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 2 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047556k(370276k free), swap 2520776k(1835956k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_08-b03) for windows-x86, built on Jul 26 2006 01:10:50 by "java_re" with MS VC++ 6.0

    Ah.. I hate when they do that, if you are going to write an application then support it.... At least help figure out why it's failing other than just saying it should work....
    I would get on a call with them and get a Manager involved, someone there should be able to help you...
    In the mean time:
    First easiest way is search for crpe32.dll, there should only be one version and it should match the est of the file versions. Next step will tell you the versions being used.
    OK, download [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip]. what this app will do is list all of the runtime files each user has access to. You can save and then compare the list files between the  one working PC and any other user. Should help determine what is missing or the users profile doesn't have access to or not installed.
    Another option is to use ProfileMonitor from Microsoft, it will list all access issues including the registry keys that all users need to run CR.
    Can you tell me what version you are using?
    Also need to know what version of TS?
    OS it's running on?
    And work station OS?
    One more option, go to this link http://www.sdn.sap.com/irj/scn/advancedsearch?query=boj and search on "invalid tlv" and it will return a bunch of know reasons why you can get that error.
    Thanks
    Don
    Edited by: Don Williams on May 31, 2011 12:52 PM

  • SharePoint Newsfeed iOS app crashes to Home screen

    Hello!
    We are having some trouble getting the SharePoint Newsfeed mobile app to work on iOS devices with our on-prem SharePoint 2013 instance. When users go to sign in, they enter their username, password, and URL (the URL has been verified as correct). When they
    tap the "Sign in" button, the app shows the "Loading..." screen for about a second, and then crashes to the Home screen. This is happening on all iOS devices we have tested it on, which span multiple versions of iOS 6, as well as iOS 7.
    However, the SharePoint Newsfeed mobile app works fine on Windows Phone 8 devices with our SharePoint instance. Has anyone else seen this problem or have any recommendations on how to resolve it?
    Thank you!

    Hi siasmj,
    Could you access SharePoint MySite from iOS browser?
    Please check if you input the correct personal site URL (http/https) in your iOS SharePoint Newsfeed app.
    Please also try removing and re-installing the SharePoint Newsfeed app from your iOS devices, and test again.
    http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/use-the-sharepoint-newsfeed-app-on-an-iphone-ipad-or-ipod-touch-HA103887876.aspx
    https://itunes.apple.com/us/app/sharepoint-newsfeed/id595847617?mt=8
    Thanks
    Daniel Yang
    TechNet Community Support

  • Ugliest bug: under some conditions app crashes when activated from push notification. Any workaround?

    Hi, 
    I encountered the following serious bug. 
    Steps to reproduce:
    - start the app which uses "Fast App Resume" mode
    - block the phone. 
    - ensure the app is tombstoned. This can be done by using "Tombstone upon deactivation" VS option.
    - send the toast notification to the app. 
    - Open the app from toast. >>>> the app either CRASHES or stays on the same page, without proper navigation. Both outcomes are unacceptable.
    I created a test solution, which demonstrates this bug: https://db.tt/LyarfmDK
    It contains two projects, both are nothing more than msdn samples with smallest modifications:
    - fast app resume sample
    - push notifications sample.
    To reproduce:
    - start fast app resume project under debug with "tombstone" option 
    - copy the push uri
    - start the "send push" sample. Paste PUSH uri and send the push notification.
    - tap on the notification ==>> either crash or no navigation.
    Well, I believe this is a very serious issue and must be fixed ASAP. 
    Any workaround for now?

    I downloaded your zip file and there are projects all over the place.  If you want us to look into this, please label projects nicely, place them where I can figure out which one goes where, and then give me easy to follow instructions to reproduce
    the problem. 
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • IOS App Crash on regular basis

    Hi I have an APP(Mobitest Agent)   which does performance testing Mobile based Web.  It is an APP which should run continuously on a Mobile Device to Run Performance Tests. We have a lab where we set this up.  This APP works fine for some hours some times and some time for days. Following is one of the crash logs related to it. Can any one help on this how to fix.  Source code is available at : https://code.google.com/p/mobitest-agent/source/browse/#svn%2Ftrunk%2Fmobitest-a gent%2FiOS%2FBZAgent
    Crash log
    Incident Identifier: 1E4A53F8-0DBD-4422-96BB-2177352070DA
    CrashReporter Key:   f1033e3b216c89ede712392ed5b99e43508d87bd
    Hardware Model:      iPhone4,1
    Process:         BZAgent [11228]
    Path:            /var/mobile/Applications/7149AA3D-E6BF-4B43-BF10-5A9C1A83E5BD/BZAgent.app/BZAge nt
    Identifier:      BZAgent
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2014-02-24 17:21:14.036 -0800
    OS Version:      iPhone OS 5.1.1 (9B206)
    Report Version:  104
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x00000102, 0x8c440099
    Crashed Thread:  2
    Thread 0 name:  Dispatch queue: com.apple.main-thread
    Thread 0:
    0   WebCore                                 0x31950200 WebCore::SharedBuffer::~SharedBuffer() + 0
    1   WebCore                                 0x3198e778 WebCore::CachedResource::~CachedResource() + 124
    2   WebCore                                 0x319fe664 WebCore::CachedScript::~CachedScript() + 124
    3   WebCore                                 0x3198d86a WebCore::MemoryCache::evict(WebCore::CachedResource*) + 306
    4   WebCore                                 0x3181f3ae WebCore::MemoryCache::pruneDeadResourcesToSize(unsigned int) + 366
    5   WebCore                                 0x3181f1d8 WebCore::MemoryCache::prune() + 92
    6   WebKit                                  0x356fbab8 +[WebView(WebFileInternal) _setCacheModel:] + 1840
    7   WebKit                                  0x35721fb8 +[WebCache empty] + 48
    8   BZAgent                                 0x000d22d2 0xc8000 + 41682
    9   BZAgent                                 0x000d0b4c 0xc8000 + 35660
    10  BZAgent                                 0x000d0c62 0xc8000 + 35938
    11  BZAgent                                 0x000d3f44 0xc8000 + 48964
    12  Foundation                              0x3552b4f8 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 12
    13  CoreFoundation                          0x359e9540 ___CFXNotificationPost_block_invoke_0 + 64
    14  CoreFoundation                          0x35975090 _CFXNotificationPost + 1400
    15  BZAgent                                 0x000d5c68 0xc8000 + 56424
    16  BZAgent                                 0x000d63ba 0xc8000 + 58298
    17  Foundation                              0x35562c22 __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0 + 10
    18  Foundation                              0x354ba6d2 -[NSURLConnectionInternalConnection invokeForDelegate:] + 22
    19  Foundation                              0x354ba69c -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 192
    20  Foundation                              0x354ba5be -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 54
    21  CFNetwork                               0x3521f7ee URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 186
    22  CFNetwork                               0x3521449e URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 418
    23  CFNetwork                               0x3521419c URLConnectionClient::processEvents() + 100
    24  CFNetwork                               0x352140d2 MultiplexerSource::perform() + 150
    25  CoreFoundation                          0x359f1acc __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 8
    26  CoreFoundation                          0x359f1298 __CFRunLoopDoSources0 + 208
    27  CoreFoundation                          0x359f003e __CFRunLoopRun + 646
    28  CoreFoundation                          0x3597349e CFRunLoopRunSpecific + 294
    29  CoreFoundation                          0x35973366 CFRunLoopRunInMode + 98
    30  GraphicsServices                        0x3760f432 GSEventRunModal + 130
    31  UIKit                                   0x3347fcce UIApplicationMain + 1074
    32  BZAgent                                 0x000c9850 0xc8000 + 6224
    33  BZAgent                                 0x000c97d8 0xc8000 + 6104
    Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
    Thread 1:
    0   libsystem_kernel.dylib                  0x362c33a8 kevent + 24
    1   libdispatch.dylib                       0x348adf04 _dispatch_mgr_invoke + 708
    2   libdispatch.dylib                       0x348adc22 _dispatch_mgr_thread + 30
    Thread 2 name:  WebThread
    Thread 2 Crashed:
    0   CoreFoundation                          0x35966296 CFRelease + 14
    1   CoreFoundation                          0x359f0b78 __CFRunLoopTimerDeallocate + 20
    2   CoreFoundation                          0x35966394 CFRelease + 268
    3   CoreFoundation                          0x359cd810 __CFArrayReleaseValues + 392
    4   CoreFoundation                          0x35966394 CFRelease + 268
    5   CoreFoundation                          0x359f0278 __CFRunLoopRun + 1216
    6   CoreFoundation                          0x3597349e CFRunLoopRunSpecific + 294
    7   CoreFoundation                          0x35973366 CFRunLoopRunInMode + 98
    8   WebCore                                 0x31872c9c _ZL12RunWebThreadPv + 396
    9   libsystem_c.dylib                       0x32de072e _pthread_start + 314
    10  libsystem_c.dylib                       0x32de05e8 thread_start + 0
    Thread 3 name:  com.apple.NSURLConnectionLoader
    Thread 3:
    0   libsystem_kernel.dylib                  0x362c3004 mach_msg_trap + 20
    1   libsystem_kernel.dylib                  0x362c31fa mach_msg + 50
    2   CoreFoundation                          0x359f13ec __CFRunLoopServiceMachPort + 120
    3   CoreFoundation                          0x359f0124 __CFRunLoopRun + 876
    4   CoreFoundation                          0x3597349e CFRunLoopRunSpecific + 294
    5   CoreFoundation                          0x35973366 CFRunLoopRunInMode + 98
    6   Foundation                              0x354acbb2 +[NSURLConnection(Loader) _resourceLoadLoop:] + 302
    7   Foundation                              0x354aca7a -[NSThread main] + 66
    8   Foundation                              0x3554058a __NSThread__main__ + 1042
    9   libsystem_c.dylib                       0x32de072e _pthread_start + 314
    10  libsystem_c.dylib                       0x32de05e8 thread_start + 0
    Thread 4 name:  com.apple.CFSocket.private
    Thread 4:
    0   libsystem_kernel.dylib                  0x362d3570 __select + 20
    1   CoreFoundation                          0x359f563a __CFSocketManager + 726
    2   libsystem_c.dylib                       0x32de072e _pthread_start + 314
    3   libsystem_c.dylib                       0x32de05e8 thread_start + 0
    Thread 5 name:  WebCore: CFNetwork Loader
    Thread 5:
    0   libsystem_kernel.dylib                  0x362c3004 mach_msg_trap + 20
    1   libsystem_kernel.dylib                  0x362c31fa mach_msg + 50
    2   CoreFoundation                          0x359f13ec __CFRunLoopServiceMachPort + 120
    3   CoreFoundation                          0x359f0124 __CFRunLoopRun + 876
    4   CoreFoundation                          0x3597349e CFRunLoopRunSpecific + 294
    5   CoreFoundation                          0x35973366 CFRunLoopRunInMode + 98
    6   WebCore                                 0x3189c0d2 _ZN7WebCoreL15runLoaderThreadEPv + 122
    7   libsystem_c.dylib                       0x32de072e _pthread_start + 314
    8   libsystem_c.dylib                       0x32de05e8 thread_start + 0
    Thread 6 name:  WebCore: LocalStorage
    Thread 6:
    0   libsystem_kernel.dylib                  0x362d3068 __psynch_cvwait + 24
    1   libsystem_c.dylib                       0x32de0a46 _pthread_cond_wait + 634
    2   libsystem_c.dylib                       0x32de07c2 pthread_cond_wait + 34
    3   JavaScriptCore                          0x3090490e ***::ThreadCondition::timedWait(***::Mutex&, double) + 54
    4   WebCore                                 0x319d3bdc ***::PassOwnPtr<WebCore::LocalStorageTask> ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessageFilteredWithTimeout <bool ()(WebCore::LocalStorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::LocalStorageTask*), double) + 52
    5   WebCore                                 0x319d3b92 WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 106
    6   libsystem_c.dylib                       0x32de072e _pthread_start + 314
    7   libsystem_c.dylib                       0x32de05e8 thread_start + 0
    Thread 7:
    0   libsystem_kernel.dylib                  0x362d3cd4 __workq_kernreturn + 8
    1   libsystem_c.dylib                       0x32ddaf36 _pthread_wqthread + 610
    2   libsystem_c.dylib                       0x32ddacc8 start_wqthread + 0
    Thread 8:
    0   libsystem_kernel.dylib                  0x362d3cd4 __workq_kernreturn + 8
    1   libsystem_c.dylib                       0x32ddaf36 _pthread_wqthread + 610
    2   libsystem_c.dylib                       0x32ddacc8 start_wqthread + 0
    Thread 9:
    0   libsystem_kernel.dylib                  0x362d3cd4 __workq_kernreturn + 8
    1   libsystem_c.dylib                       0x32ddaf36 _pthread_wqthread + 610
    2   libsystem_c.dylib                       0x32ddacc8 start_wqthread + 0
    Thread 10:
    0   libsystem_kernel.dylib                  0x362d3cd4 __workq_kernreturn + 8
    1   libsystem_c.dylib                       0x32ddaf36 _pthread_wqthread + 610
    2   libsystem_c.dylib                       0x32ddacc8 start_wqthread + 0
    Thread 2 crashed with ARM Thread State:
        r0: 0x00000000    r1: 0x00000000      r2: 0x00000000      r3: 0x32aaaba0
        r4: 0x00000000    r5: 0x112d8694      r6: 0x01402c80      r7: 0x005ec14c
        r8: 0x3fa586b0    r9: 0x002141a0     r10: 0x0000002c     r11: 0x00000080
        ip: 0x3fa328a8    sp: 0x005ec120      lr: 0x359f0b7f      pc: 0x35966296
      cpsr: 0x00080030
    Binary Images:
       0xc8000 -   0x13afff +BZAgent armv7  <6fc2f8b483c131c784837b19dafc4203> /var/mobile/Applications/7149AA3D-E6BF-4B43-BF10-5A9C1A83E5BD/BZAgent.app/BZAge nt
    0xb648000 -  0xb65ffff  QuickTime Plugin armv7  <ab0d345103a037a2bd8ae2e2712e488b> /System/Library/Internet Plug-Ins/QuickTime Plugin.webplugin/QuickTime Plugin
    0x2fec7000 - 0x2fee8fff  dyld armv7  <77eddfd654df393ba9c95ff01715fd08> /usr/lib/dyld
    0x3069f000 - 0x30752fff  iTunesStore armv7  <b3c0cce5f8e632e18f841c32b68f57a1> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
    0x30765000 - 0x3076bfff  MobileKeyBag armv7  <e1f06241ef0e3f0aae00f15df572077e> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
    0x3083f000 - 0x30964fff  JavaScriptCore armv7  <2ffc6c87b94434288366bd53765ee267> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
    0x3099e000 - 0x309a4fff  liblockdown.dylib armv7  <9e45ce468a6f31e5b8263f2c224aa800> /usr/lib/liblockdown.dylib
    0x30a27000 - 0x30a3cfff  libresolv.9.dylib armv7  <66f7557fa4b43979b186e00271839fdb> /usr/lib/libresolv.9.dylib
    0x30b4e000 - 0x30b51fff  CoreTime armv7  <a398de5ba1e43a11b7008e9bb5a7f6fe> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
    0x30b52000 - 0x30b9afff  CoreMedia armv7  <e274e1b894753b2eb05cf7b22a36d0c1> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x30bd6000 - 0x3111afff  FaceCoreLight armv7  <f326d88709683520b251dc53cb847c11> /System/Library/PrivateFrameworks/FaceCoreLight.framework/FaceCoreLight
    0x317c9000 - 0x31f88fff  WebCore armv7  <2690c38c9c5f3c09975d619dd1dfbed7> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x31f9b000 - 0x32073fff  vImage armv7  <caf3648be2933384b6aa1ae7408ab4f0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vIm age
    0x32074000 - 0x32258fff  AudioToolbox armv7  <c91e27850452330ea804db6408840fd2> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x32259000 - 0x322a3fff  libvDSP.dylib armv7  <441b42aca07b3da39feab25f8349918f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib vDSP.dylib
    0x322cb000 - 0x322e1fff  libmis.dylib armv7  <258bc92be5823b239b4412dd42cb4807> /usr/lib/libmis.dylib
    0x322ed000 - 0x324aafff  ImageIO armv7  <02e3578171fa3b6a969b244275fd2bab> /System/Library/Frameworks/ImageIO.framework/ImageIO
    0x32623000 - 0x32634fff  libxpc.dylib armv7  <ccf25b1e49ce3b2fa58d8c8546755505> /usr/lib/system/libxpc.dylib
    0x326cf000 - 0x327aefff  RawCamera armv7  <293f818ba6533dceae8b900b6ed3c887> /System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x32847000 - 0x32938fff  QuartzCore armv7  <35d64a9da5523ae08c9e41511fd3061b> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x3294b000 - 0x3294efff  libsystem_network.dylib armv7  <356cb66612e836968ef24e6e5c3364cc> /usr/lib/system/libsystem_network.dylib
    0x32a28000 - 0x32a48fff  libxslt.1.dylib armv7  <39348471007e39dab80af68b08390456> /usr/lib/libxslt.1.dylib
    0x32aa5000 - 0x32ab1fff  CoreVideo armv7  <364fa32d513f3c11b50970120545f1a8> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x32ab2000 - 0x32ad5fff  Bom armv7  <c3435ecd2e5839f89de51edad0e1bb00> /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x32b87000 - 0x32bd1fff  ManagedConfiguration armv7  <f1fbb825def23043830a095b953a9c94> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfigu ration
    0x32bec000 - 0x32bf2fff  MobileIcons armv7  <ed1b46f917903c9b9baaa2be4392dafe> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x32bf5000 - 0x32bf9fff  IOMobileFramebuffer armv7  <42dbc26828e934acabb4f3b0a35d8250> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebu ffer
    0x32bfa000 - 0x32bfbfff  libremovefile.dylib armv7  <402f8956975d3b6fb86ab9b31a43242c> /usr/lib/system/libremovefile.dylib
    0x32bfc000 - 0x32bfdfff  libsystem_sandbox.dylib armv7  <6a8f2f33c7543808a0f4599101c3b61a> /usr/lib/system/libsystem_sandbox.dylib
    0x32c0c000 - 0x32c0efff  MobileInstallation armv7  <215d93dbb0f63cbf828f9126eb7b5349> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallati on
    0x32c44000 - 0x32d7bfff  MusicLibrary armv7  <32bc794969e534df97a14dc4be228408> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
    0x32da9000 - 0x32dcdfff  PrintKit armv7  <08509c7bc915358b953de6f5cbef5c56> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
    0x32dd2000 - 0x32e5efff  libsystem_c.dylib armv7  <f859ce1ad1773f0ba98d7c6e135b7697> /usr/lib/system/libsystem_c.dylib
    0x32ed5000 - 0x32ee6fff  DataAccessExpress armv7  <e6144ba265da3bb7b9a263aa1a29b054> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x32f64000 - 0x32f65fff  libdnsinfo.dylib armv7  <9aede8d6579d3430ac39ae5f95cce498> /usr/lib/system/libdnsinfo.dylib
    0x32f66000 - 0x32f69fff  CaptiveNetwork armv7  <f5cc4b97ce9432da9426f12621453325> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x33051000 - 0x3308cfff  libCGFreetype.A.dylib armv7  <55941c96cf1f3b048e72a148c4496c16> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dyl ib
    0x3344e000 - 0x338f0fff  UIKit armv7  <cd513a2f22f53d698c3e10f6fe48a63e> /System/Library/Frameworks/UIKit.framework/UIKit
    0x33a46000 - 0x33a8bfff  GeoServices armv7  <a26be2e76e8730ab91a16502aba376be> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x33aca000 - 0x33acffff  libcopyfile.dylib armv7  <52e874396c393ed29099789ce702cfe2> /usr/lib/system/libcopyfile.dylib
    0x33af1000 - 0x33b04fff  DataDetectorsCore armv7  <3f4596cbe1b13fdcb427d87de21df3f6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
    0x33b11000 - 0x33b6efff  StoreServices armv7  <6ce256d3cf433e4aa1af8d696bf1f75d> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x33b74000 - 0x33ce7fff  MediaPlayer armv7  <63cdf8f9c66d36e7a4e69e2f6cae854f> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
    0x33d09000 - 0x33d52fff  AddressBook armv7  <b17a2962e9043e0385c3c2c652155f2b> /System/Library/Frameworks/AddressBook.framework/AddressBook
    0x33d89000 - 0x33e8ffff  IMGSGX543GLDriver armv7  <7454a840600038949d67edad05097242> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
    0x33e95000 - 0x33e9bfff  libnotify.dylib armv7  <9406297de3e43742887890662a87ab53> /usr/lib/system/libnotify.dylib
    0x33f81000 - 0x33f8bfff  libvMisc.dylib armv7  <e8248c797b9b363594bb652ddf7ce16d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib vMisc.dylib
    0x34341000 - 0x34350fff  SpringBoardServices armv7  <a2363f8ed49932dba415d2d4cd32fb74> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServ ices
    0x34351000 - 0x34356fff  libsystem_dnssd.dylib armv7  <27bb5462450732e380f5a2c170546e93> /usr/lib/system/libsystem_dnssd.dylib
    0x3435d000 - 0x34367fff  libbz2.1.0.dylib armv7  <40e4045fb79e382b8833707746cf28b1> /usr/lib/libbz2.1.0.dylib
    0x34441000 - 0x34466fff  OpenCL armv7  <f4b08361179a3f6bb033415b0d7c6251> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
    0x344a2000 - 0x344b8fff  EAP8021X armv7  <952fcfdec0633aff923768fca1a26fcb> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
    0x3450f000 - 0x3454dfff  IOKit armv7  <fcda71d29d6136dfbd84c1725f4998e5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x346be000 - 0x34807fff  libicucore.A.dylib armv7  <b70646b63f1f3b33896dd8cb91b8dab1> /usr/lib/libicucore.A.dylib
    0x34808000 - 0x34808fff  liblangid.dylib armv7  <644ff4bcfbf337b5b5859e3f0fc0a9a8> /usr/lib/liblangid.dylib
    0x34809000 - 0x34814fff  AccountSettings armv7  <373e59421d983c93931cfbad87b1ae35> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
    0x34830000 - 0x34867fff  Security armv7  <eea56f71fde83c2981f9281dc7823725> /System/Library/Frameworks/Security.framework/Security
    0x348a5000 - 0x348a9fff  libAccessibility.dylib armv7  <9a17d07b5a3b38cfafdf16f78c99b572> /usr/lib/libAccessibility.dylib
    0x348aa000 - 0x348c0fff  libdispatch.dylib armv7  <9ecfaef4110a3bf9a92d12f0fe8d1d78> /usr/lib/system/libdispatch.dylib
    0x348e8000 - 0x34939fff  libstdc++.6.dylib armv7  <c352af5a742e3c7a8d4d7e5f6f454793> /usr/lib/libstdc++.6.dylib
    0x3493a000 - 0x34941fff  AssetsLibraryServices armv7  <38132ecfd74b325fb1a4142bab663c19> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibrary Services
    0x34961000 - 0x34972fff  AirTraffic armv7  <c9eb888c1bd1322cbda5b01d41be0c7d> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
    0x34a0c000 - 0x34a0dfff  CoreSurface armv7  <97f871f09f503c98a6371c2b657430d8> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
    0x34a2f000 - 0x34a3bfff  libz.1.dylib armv7  <36ce86a3dc8c344596c8c325615f374b> /usr/lib/libz.1.dylib
    0x34a6d000 - 0x34a75fff  MobileWiFi armv7  <b76c3e9fb78234c392058250d4620e72> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
    0x34a76000 - 0x34a7afff  libGFXShared.dylib armv7  <998fccc16cf735dbb62324202995e193> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x34c05000 - 0x34c19fff  PersistentConnection armv7  <54091a638f8731cd85ccf00fa06972c3> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConn ection
    0x34ea9000 - 0x34f6ffff  GLEngine armv7  <6617f2b4ee283469a5595129889ff049> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
    0x34fea000 - 0x3502efff  MobileCoreServices armv7  <757226927a873d5492be721908077b48> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x35060000 - 0x3506dfff  libbsm.0.dylib armv7  <750a0de73a733019a77144b805d4d2f8> /usr/lib/libbsm.0.dylib
    0x35210000 - 0x352e7fff  CFNetwork armv7  <765a472c824830eea91b8f02d12867e4> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x352e8000 - 0x35367fff  libsqlite3.dylib armv7  <bf01f5ed47b033d8bde30d735ff44416> /usr/lib/libsqlite3.dylib
    0x3549c000 - 0x3561afff  Foundation armv7  <c40ddb073142315bb4ebb214343d0b7f> /System/Library/Frameworks/Foundation.framework/Foundation
    0x3563d000 - 0x35643fff  IAP armv7  <17eddbf5590d3cb88d4acbda27447f5b> /System/Library/PrivateFrameworks/IAP.framework/IAP
    0x35657000 - 0x356e9fff  HomeSharing armv7  <11ca6ed6f8c0377aba1d3e03484c380f> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
    0x356f6000 - 0x357c6fff  WebKit armv7  <3c5dd2ec46fe3e189c25bba78ad88fa1> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
    0x35846000 - 0x358fcfff  AVFoundation armv7  <35cb7a0eb1dc3554a777c1cc11cb0415> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x358fd000 - 0x35903fff  liblaunch.dylib armv7  <aa2bcba6fc7a36a191958fef2e995475> /usr/lib/system/liblaunch.dylib
    0x35904000 - 0x35906fff  libCoreFSCache.dylib armv7  <808518e0fbf539af8489f028ca5198c7> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
    0x35907000 - 0x35950fff  libc++.1.dylib armv7  <5b690e5dd5a43a7fb166ade9fe58a7a4> /usr/lib/libc++.1.dylib
    0x35951000 - 0x35954fff  libcompiler_rt.dylib armv7  <b2c05d8601c13be884097192dca4e187> /usr/lib/system/libcompiler_rt.dylib
    0x35964000 - 0x35a7bfff  CoreFoundation armv7  <6d450fe923d7387f8b01845e0edd713d> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x35c06000 - 0x35c5efff  CoreAudio armv7  <be335e8eb6f93594b028a6ddd503a183> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x35c61000 - 0x35c61fff  libkeymgr.dylib armv7  <ebd2dddf55d83cf48a18913968775960> /usr/lib/system/libkeymgr.dylib
    0x35c6a000 - 0x35c79fff  OpenGLES armv7  <e80acc691001301e96101bb89d940033> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x35c7a000 - 0x35c7afff  Accelerate armv7  <55b24cf91a8b3532bde6733c96f14c08> /System/Library/Frameworks/Accelerate.framework/Accelerate
    0x35c7d000 - 0x35c8cfff  GenerationalStorage armv7  <d84c3fd0e7bd36e78c256f2f4c5a4e91> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalSto rage
    0x35d09000 - 0x35d48fff  QuickLook armv7  <802b1092542a3017a0380632502610d4> /System/Library/Frameworks/QuickLook.framework/QuickLook
    0x35dcf000 - 0x35dd6fff  libc++abi.dylib armv7  <bab4dcbfc5943d3fbb637342d35e8045> /usr/lib/libc++abi.dylib
    0x35dfd000 - 0x35e49fff  CoreTelephony armv7  <b8f80d5d594c31d2b5d8fba9fdedb7e1> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x35ecc000 - 0x35f76fff  libBLAS.dylib armv7  <bf822cc1a3243ae7b104cf73ca22d352> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib BLAS.dylib
    0x35f98000 - 0x35f9bfff  libmacho.dylib armv7  <e52b77623bd031bc807e77029566c777> /usr/lib/system/libmacho.dylib
    0x35fb8000 - 0x35fbbfff  NetworkStatistics armv7  <7848d8ebad99367cb4f7f4e3fe88e5d6> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
    0x35fc2000 - 0x36107fff  CoreGraphics armv7  <903545b89a7f311d95100ac7d1d44709> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x36108000 - 0x36114fff  libCRFSuite.dylib armv7  <bdb2b4d1a78c39c1ba60d791207aed2a> /usr/lib/libCRFSuite.dylib
    0x36115000 - 0x3614dfff  VideoToolbox armv7  <9f25f38d1cd13a1daff99cfde8884410> /System/Library/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
    0x3614e000 - 0x36164fff  DictionaryServices armv7  <6ed2e967136f37d4a4b9b318d6c43b83> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServic es
    0x3616e000 - 0x3623dfff  libGLProgrammability.dylib armv7  <49607ffe4ee9389494285a213e392924> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x3623e000 - 0x362b2fff  MediaControlSender armv7  <87315c54b2293ab589950341ff91b45d> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSend er
    0x362c2000 - 0x362d8fff  libsystem_kernel.dylib armv7  <311f379a9fde305d80c1b22b7dd2e52a> /usr/lib/system/libsystem_kernel.dylib
    0x3630d000 - 0x36315fff  ProtocolBuffer armv7  <0e846afacf823d2b8c029cc3010a8253> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x36316000 - 0x3631bfff  CrashReporterSupport armv7  <dc11c5c2cbe73a6288a6094ebf5de673> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterS upport
    0x3631e000 - 0x3631efff  libgcc_s.1.dylib armv7  <eb82984fa36c329387aa518aa5205f3d> /usr/lib/libgcc_s.1.dylib
    0x364f3000 - 0x364f3fff  libCVMSPluginSupport.dylib armv7  <a80aaa9989483ce3a496a061fd1e9e0a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x364ff000 - 0x365edfff  libiconv.2.dylib armv7  <2cfefe2ad1d335dd9549562910e7a2e2> /usr/lib/libiconv.2.dylib
    0x3663d000 - 0x3663efff  libdyld.dylib armv7  <977b0ad6f2f433108b4a0324a57cd2ab> /usr/lib/system/libdyld.dylib
    0x366b6000 - 0x366cffff  libRIP.A.dylib armv7  <1828cddc5dd93c61afbefb59587d7f8a> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
    0x36708000 - 0x367b5fff  libxml2.2.dylib armv7  <58d47f064e0232119f4b838ad659f9c1> /usr/lib/libxml2.2.dylib
    0x367ce000 - 0x36811fff  libcommonCrypto.dylib armv7  <95b49daf4cf038b6bea8010bba3a1e26> /usr/lib/system/libcommonCrypto.dylib
    0x36812000 - 0x36813fff  DataMigration armv7  <d77f0e8f39ee37f5a2ac713a3fd9e693> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x3684a000 - 0x3684efff  AggregateDictionary armv7  <3a3a33f3a05538988c6e2bb363dc46a8> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictio nary
    0x3686c000 - 0x36870fff  IOSurface armv7  <443ac3aab9283da480dd9dcda3c5c88e> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
    0x36873000 - 0x36aa0fff  MediaToolbox armv7  <c3098478486032c6aff336fa711c4fc6> /System/Library/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
    0x36aa4000 - 0x36aa5fff  libsystem_blocks.dylib armv7  <9fdc27af7350323bbc7d98e14e027907> /usr/lib/system/libsystem_blocks.dylib
    0x36ae9000 - 0x36b62fff  ProofReader armv7  <6db611d8df6530d480f97a40bc519f70> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x36b63000 - 0x36b82fff  libSystem.B.dylib armv7  <0c55744b6f7335eebba4ca2c3d10b43c> /usr/lib/libSystem.B.dylib
    0x36bec000 - 0x36c28fff  AppSupport armv7  <311eac85b2a433a884dacba77217b49e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x370c7000 - 0x370cbfff  libcache.dylib armv7  <d6a7436ed8dc33d795c9b42baf864882> /usr/lib/system/libcache.dylib
    0x370cc000 - 0x3713cfff  CoreImage armv7  <86ac6f5a267637b6b7f8a831dfc7c64b> /System/Library/Frameworks/CoreImage.framework/CoreImage
    0x3723d000 - 0x3724ffff  DataDetectorsUI armv7  <50ea319aaeb7307e92719980dd4b2953> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
    0x3760b000 - 0x37615fff  GraphicsServices armv7  <cb64e146a8ee3fda9e80ffae1ccc9c5a> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x3776a000 - 0x37a2bfff  libLAPACK.dylib armv7  <0e94e9a7e7a334649afaccae0f1215a2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/lib LAPACK.dylib
    0x37ad9000 - 0x37adbfff  libCoreVMClient.dylib armv7  <d4d4aa3090c83e87bcb15ed00b93fd5c> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
    0x37adc000 - 0x37ae3fff  MediaRemote armv7  <42dc1b43dabd3692b97d6aacfbdf0449> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
    0x37ae4000 - 0x37b19fff  SystemConfiguration armv7  <4464a4e3bb3f32f7abaa35ebf31fda49> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x37b28000 - 0x37baefff  CoreMotion armv7  <6a9355d5a8e238b5b8f193605d509e15> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x37baf000 - 0x37beffff  libGLImage.dylib armv7  <40448706190031f6b0d9636cc11ee81d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x37bf8000 - 0x37bfbfff  libgermantok.dylib armv7  <94278987ba623a35ae545db5636b4370> /usr/lib/libgermantok.dylib
    0x37dbb000 - 0x37e81fff  libobjc.A.dylib armv7  <90014d1bc583366d85622e43097df416> /usr/lib/libobjc.A.dylib
    0x37ebe000 - 0x37f0cfff  CoreLocation armv7  <44550ebedf23334d85441d9743b74e03> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x37f5b000 - 0x37f5bfff  vecLib armv7  <a2cfe25e77aa36bfb4a30b2d0d2dd465> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vec Lib
    0x37f5c000 - 0x37f79fff  libsystem_info.dylib armv7  <50863bcbf478323e96a8e5b1a83ea6f9> /usr/lib/system/libsystem_info.dylib
    0x37fbe000 - 0x37fc7fff  libMobileGestalt.dylib armv7  <4a15e845dc6f3a4a980de66c1cc44c42> /usr/lib/libMobileGestalt.dylib
    0x38037000 - 0x38037fff  libunwind.dylib armv7  <e0a73a57795f3e1698a52ebe6fc07005> /usr/lib/system/libunwind.dylib
    0x38053000 - 0x38058fff  libGPUSupportMercury.dylib armv7  <3c1cc3175c403ace8fcbd3826bd43807> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dyl ib
    0x38059000 - 0x380aafff  CoreText armv7  <5bfac4ee88d03d5b87a1f105abb7756c> /System/Library/Frameworks/CoreText.framework/CoreText
    0x38249000 - 0x3830bfff  Celestial armv7  <19617260ee073e23b95e456d93930aea> /System/Library/PrivateFrameworks/Celestial.framework/Celestial

    Sorry.
    I run this code only on debug-build.
    Exported release build does not reproduce the crash.
    To reproduce on release ipa package,
    change BaseView#doSomething function like this.
      public function doSomething(e:*):void
        trace("do something"); // Add this line
    Could you please try again.
    I run the app on
    iPad mini + iOS 8.1
    AIR SDK version 17.0.0  build 96
    Flash Builder 4.7
    Regards.

Maybe you are looking for

  • Ipad and library books

    After two hours last night trying to get the protected book to my ipad to read I am so very grateful to find the app Blue Reader.  WOW!  It was so easy.  I am an idiot with computers but their step by step help section for transferring library books

  • Is there a way to make Color understand Cyrillic symbols in file names?

    When I'm working with any clips, that have non-latin symbols in their file names, Color names them with some system-specific symbols, and every file is named in a very inconvenient way. The files are named so weirdly, that I really can't understand w

  • FCPX(10.1.1) quits when I load library

    Every time I try to load a library FCPX quits. It's just this one. I have it on an external drive. Have tried moving the library do another drive, but same problem there. It quits when it's loading curves(Natress). Have downloaded Event Manager X, bu

  • Oracle Connect By prior

    Hi, Is there any way in toplink where i can use the connect by prior to select a hierarchy of values??

  • BookMarkRoot.children

    Hi, to obtain a  list of the top-level bookmarks and the pages they point, I use the VB6  code    Dim avDoc As Acrobat.CAcroAVDoc    Set avDoc = CreateObject("AcroExch.AVDoc")    Dim pdfFile As String    pdfFile = App.Path & "\file.pdf"    If avDoc.O