解决方案 »

  1.   

    https://code.google.com/p/panoramagl-android/issues/detail?id=6
      

  2.   

    should remove all recycle code becuse ICS have a feathure to auto recycle
    I resolved this issue by below steps :1. First decompile the PanoramaGL_0.1.jar file or checkout source from here https://code.google.com/p/panoramagl-android/source/checkout2. find the below line using search function and comment it
         image.recycle();
         bitmap.recycle();3. Export new jar file4. Replace your application's old jar file with this new jar file但是这样做貌似有带来了其他bug
      

  3.   

    yahoo搜到的一个回复,觉得不错:
    SIGV_MAPPER:It's a segmentation fault which happens during malloc. Most probably a dangling pointer issue, or some sort of buffer overflow.SIGSSEGV is the signal that terminates it based on the issue, segmentation fault.
    Check for dangling pointers as well as the overflow issue.
    Enabling coredumps will help you determine the problem.