Need Help With This Error

Discussion in 'Technical Discussion' started by Shiraz1024, Oct 10, 2017.

  1. Shiraz1024

    Shiraz1024 Boxer

    Joined:
    Jul 19, 2017
    Messages:
    7
    Likes Received:
    1
    a/libc(2495): fatal signal 11 (sigsegv) at 0x00002600 (code=1), thread 2508 (thread-117)
     
  2. AstrologicMedia

    AstrologicMedia Boxer

    Joined:
    Sep 15, 2017
    Messages:
    58
    Likes Received:
    25
    Googling the error you can find related issues, like this one:

    06-04 09:59:32.355: A/libc(2495): Fatal signal 11 (SIGSEGV) at 0x00002600 (code=1), thread 2508 (Thread-117)

    This was a common error when stopping an OpenGL-ES app on Intel x86 AVD (every launch crashes at onStop()). Here's a quick solution (worked fine for JPCT-AE Engine):

    - Open AndroidManifest.xml, add android:allowClearUserData="true" tag to the application node.

    <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:allowClearUserData="true" >

    Hope it helps!
     
    Christoph likes this.
  3. Shiraz1024

    Shiraz1024 Boxer

    Joined:
    Jul 19, 2017
    Messages:
    7
    Likes Received:
    1
    I applied this node already still having this problem txt attacted :( :( :(
     

    Attached Files:

    • log.txt
      File size:
      350 bytes
      Views:
      3
  4. AstrologicMedia

    AstrologicMedia Boxer

    Joined:
    Sep 15, 2017
    Messages:
    58
    Likes Received:
    25
    Contact the Buildbox support directly, they will help you with this issue.
     
  5. Shiraz1024

    Shiraz1024 Boxer

    Joined:
    Jul 19, 2017
    Messages:
    7
    Likes Received:
    1
    Can u plz tell me how can I contact them directly ?
     
  6. AstrologicMedia

    AstrologicMedia Boxer

    Joined:
    Sep 15, 2017
    Messages:
    58
    Likes Received:
    25
  7. Shiraz1024

    Shiraz1024 Boxer

    Joined:
    Jul 19, 2017
    Messages:
    7
    Likes Received:
    1
    thanks alot bro
     
    AstrologicMedia likes this.
  8. FatalSignal11

    FatalSignal11 Boxer

    Joined:
    Oct 13, 2017
    Messages:
    6
    Likes Received:
    0
    If buildbox gives you solution please post it here too, I'm having the same problem and have tried every solution I could find on the internet + tried 100 another things I thought myself
     
  9. Shiraz1024

    Shiraz1024 Boxer

    Joined:
    Jul 19, 2017
    Messages:
    7
    Likes Received:
    1
    Which SDK u r using ?
     
  10. FatalSignal11

    FatalSignal11 Boxer

    Joined:
    Oct 13, 2017
    Messages:
    6
    Likes Received:
    0
    I think I am using SDK 23

    from androidmanifest:
    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>


    Pictures from my eclipse that might help:
    [​IMG]

    [​IMG]

    [​IMG]

    [​IMG]
     

Share This Page