Android Security Exception: package is frozen

I got this exception when my app had an abort on launch within some native code.


Your app maybe running into a "Frozen Frame" (see here: https://developer.android.com/topic/performance/vitals/frozen.html). This basically occurs if some part of your frame in your app takes longer than 700ms to load. I would suggest looking at the Android Vitals to see what is causing your app to hang. Perhaps you have an infinite loop somewhere. Also, check to see if there are any other error messages besides this one.

Tags:

Android