Hacker News new | ask | show | jobs
by mmastrac 2201 days ago
These are normal apps, unfortunately, crashing at or near startup. I believe that Google made some changes to JNI in Android 11 and most of the crashes are in native code.
1 comments

I have never seen anything but a native crash for drm code issues. I would be willing to bet some type of drm is still the problem here.
Unfortunately based on some quick analysis it looks like there _was_ a change in JNI - previously JNI method handles were pointer-like and now they are opaque integers. Definitely not DRM in this case.

Apps crash in the default mode. Hacking the device so that SetJniType is called with kPointer makes it all work.

https://android.googlesource.com/platform/art/+/master/runti...