Native crash in unknown unknown

后端 未结 2 1080
隐瞒了意图╮
隐瞒了意图╮ 2021-01-12 11:26

I have an app which is entirely written in Java - no native code whatsoever - and I\'ve twice had a crash report on the Developer Console \"Native crash in unknown unknown\"

2条回答
  •  别那么骄傲
    2021-01-12 12:02

    Searching has only revealed this type of crash in the case of Android bugs, NDK usage or buggy third party libraries

    The fourth scenario is buggy ROMs, whether those ROMs are stock ROMs from a manufacturer or are ROM mods (e.g., CyanogenMod). Once-in-a-blue-moon sorts of crashes like this are most likely to come from ROM issues, as otherwise you would run into them more often.

    Any suggestions for my next steps?

    For only a couple of users, I wouldn't necessarily worry.

    Otherwise, the Build fingerprint will give you some idea of the environment you are working with. In this case, samsung/m0xx would appear to be the Samsung GT-I9300, one of their "Galaxy S3" variants. If you can get your hands on one of those -- whether via outright purchase, some online testing service, or borrowing from a friend -- you could see if you can reproduce the crash and narrow down where in your code the crash is coming from. If you can do that, perhaps you can come up with some workaround that either is fine for all devices, or at least gets you past the crash on this one.

提交回复
热议问题