Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
New Issue on Gideros 2016.6 Android — Gideros Forum

New Issue on Gideros 2016.6 Android

mertocanmertocan Member
edited July 2016 in Bugs and issues
Hello,

I have updated my app with new libs of Gideros. I have received crash report which stops application on app loading. How can I solve it?

Report -
Build fingerprint: 'htc/m8qlul_htc_europe/htc_m8qlul:6.0.1/MMB29M/743364.1:user/release-keys'
Revision: '0'
ABI: 'arm'
pid: 10981, tid: 11014, name: GLThread 10799  >>> com.lynxgames.onlinewordhunt <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x1c
    r0 00000000  r1 ab585618  r2 ab48bb00  r3 fb3ee249
    r4 ab585620  r5 ab585618  r6 ab39bdc8  r7 ab48bb00
    r8 00000000  r9 ab50cc30  sl aaaaaaab  fp 2aaaaaab
    ip ef5f1ec4  sp dd7cbed8  lr f3ebb7d0  pc f3ebb39c  cpsr a00e0010
 
backtrace:
    #00 pc 0000b39c  /data/app/com.lynxgames.onlinewordhunt-2/lib/arm/liblua.so

Comments

  • SinisterSoftSinisterSoft Maintainer
    edited July 2016
    Make sure you update all the libs (including Lua). I have tested on various systems, no issues including an HTC M8.

    This uses the new libs: https://play.google.com/store/apps/details?id=com.sinistersoft.calypso
    Coder, video game industry veteran (since the '80s, ❤'s assembler), arrested - never convicted hacker (in the '90s), dad of five, he/him (if that even matters!).
    https://deluxepixel.com
  • Okay. I have checked reports again and it seems like, it happens because of notification.
    #03 pc 00006ac4  /data/app/com.lynxgames.onlinewordhunt-2/lib/arm/libnotification.so (_ZN19NotificationManager13dispatchEventEiPv+68)
  • SinisterSoftSinisterSoft Maintainer
    Accepted Answer
    ahh - I don't use that library. Did you update it from the plugins?
    Coder, video game industry veteran (since the '80s, ❤'s assembler), arrested - never convicted hacker (in the '90s), dad of five, he/him (if that even matters!).
    https://deluxepixel.com
  • Yes, Actually I havent replaced plugin .so files. I just updated gideros and lua libs with new version. Should I also update plugin libs?
  • SinisterSoftSinisterSoft Maintainer
    yes
    Coder, video game industry veteran (since the '80s, ❤'s assembler), arrested - never convicted hacker (in the '90s), dad of five, he/him (if that even matters!).
    https://deluxepixel.com
  • Okay. Thanks I will update and test again.
  • It didnt solve my problem. I checked deeply and saw that notification plugin causes that issue on android marshmallow devices. Also, Application doesnt crash in the first run. When I install the app, it works without any problem, but when I close and reopen the app, it crashes.

    Any idea about solution?
  • SinisterSoftSinisterSoft Maintainer
    No, but @ar2rsawseen coded that plugin so he may have an idea?
    Coder, video game industry veteran (since the '80s, ❤'s assembler), arrested - never convicted hacker (in the '90s), dad of five, he/him (if that even matters!).
    https://deluxepixel.com
  • ar2rsawseenar2rsawseen Maintainer
    Only on Marshmallow?
    I guess I was putting up upgrading to newer phone for too long now, will need to get one of the latest devices
  • Hello @ar2rsawseen,

    I have updated readyForEvent method in NotificationClass and it works now.
    public static void readyForEvents(){
    		canDispatch = true;
    		//dispatchEvents("NotificationLocalEvent");
    		//dispatchEvents("NotificationPushEvent");
    	}

    It works like that but I think now it wont be possible to get data from notification when app is opened from notification.
Sign In or Register to comment.