-
Notifications
You must be signed in to change notification settings - Fork 651
Description
Hi,
I believe the following code is causing my app to crash on some devices:
StackBlurManager stackBlurManager = new StackBlurManager(normalBitmap);
blurredBitmap = stackBlurManager.processNatively(100);
I can't know for sure because native crashes do not provide any stack trace but there is just this one place in my code where I'm calling the method processNatively().
I'm not sure if it helps but here is the backtrace provided:
#00 pc 0000156a /data/app-lib/.../libblur.so (stackblurJob+1713)
#1 pc 00001b1d /data/app-lib/.../libblur.so (Java_com_enrique_stackblur_NativeBlurProcess_functionToBlur+96)
#2 pc 00158a64 /data/dalvik-cache/data@app@...apk@classes.dex
This crash seems to happen regardless of API level (my app runs on 4.0+) or device. I get one crash report roughly every 2 days.
Any ideas on how I can debug this or at least catch the crash somehow?
Thank you,
Ricardo