Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Today I faced an error due to which my Android application is getting by SIGNAL 11.

This error usually occurs due to unauthorized memory area access by Android internal storage. Some of the possible scenarios are web access, network communication, server image downloading and such. Mine was the case of browser load url!

http://bootloader.wikidot.com/linux:android:crashlog

I need to launch the browser after a QR code scan.

Application was keep on scanning and launching the browser fluently but the issue occurs after 15-20 attempts of same steps..

I researched a lot and found that its the MEMORY ERROR which occurs in Android Native libraries.. usually when an unknown memory area is tried to access by the android internal storage system.

Finally I revealed that when I saw my application memory usage in the Android application setting section, i found that the cache has been reached to 10 MB..

share|improve this question
If Robert's solution worked, you might want to mark that as the correct answer.. – Sriram Feb 12 '11 at 6:54
I get this when starting a new activity with some complex ListAdapters. Where do I put these webview.clearChache() calls? – JPM May 4 '11 at 4:23
JPM, there is no relation with the webview and listview hahaha. It seems that the issue is in your getview method of the adapter specifically with the convertView. See the getview method on this link softwarepassion.com/… – rohit mandiwal May 4 '11 at 7:13
Hi @Rohit, i am facing the same problem while applying ffmpeg library for decoding video, so what i have to do? here is my que link please check it stackoverflow.com/questions/11322952/… and stackoverflow.com/questions/11389751/… – Rahul Upadhyay Jul 12 '12 at 6:31

1 Answer

up vote 14 down vote accepted

Call webview.clearCache(); and webView2.destroyDrawingCache();

That should solve the problem.

share|improve this answer
1  
thanks Robert... – rohit mandiwal Feb 19 '11 at 20:16
please explain wy that would solve the issue. I have similar issues with a native library and an explanation could help here. – hcpl Dec 24 '12 at 9:42
@hcpl: It's been over a year, and I don't really remember why, but I guess I figured there was some sort of memory leak. – Robert Harvey Dec 24 '12 at 15:12
@RobertHarvey I have also facing this issue on WebView. Please tell Where do I call this method ? – Dinesh Apr 29 at 12:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.