java.lang.RuntimeException: An error occurred while executing doInBackground()
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
- Expert tip
Try adding these lines to your manifest: "android:hardwareAccelerated="false"" and "android:largeHeap="true"" as it seems to work for some cases. See also this article about handling bitmaps on android's documentation: https://goo.gl/8LVrzp
The memory is leaking. Try to analyze the HEAP or use LeakCanacy (https://github.com/square/leakcanary) to figure out where is the exact problem.
Solutions on the web
via Coderanch by simone giusti, 1 year ago
via GitHub by billmeek
, 1 year agovia GitHub by Neamar
, 1 year agovia GitHub by sarvajeet294
, 9 months agovia GitHub by AndroidDeveloperLB
, 2 months agovia GitHub by Madis0
, 10 months agojava.lang.OutOfMemoryError: Failed to allocate a 6076428 byte allocation with 5932552 free bytes and 5MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
at android.graphics.Bitmap.createScaledBitmap(Bitmap.java:753)
at com.gelakinetic.mtgfam.fragments.CardViewFragment$FetchPictureTask.doInBackground(CardViewFragment.java:1162)
at com.gelakinetic.mtgfam.fragments.CardViewFragment$FetchPictureTask.doInBackground(CardViewFragment.java:1025)
at android.os.AsyncTask$2.call(AsyncTask.java:295)
at java.util.concurrent.FutureTask.run(FutureTask.java:237)