We had a small coronary event the other day. Logging into our favourite web site, Google Merchant Account, we were greeted with a message at the top of the page. ‘Your account has been suspended’. Continue reading “Google Merchant Account Suspended – Don’t Panic!”
Category: Apps
Avoid Out-Of-Memory Problems in Android
It’s Java so you don’t need to worry – the garbage collector ‘just does it’, right?
NOT!
java.lang.OutOfMemoryError: Bitmap Size Exceeds VM Budget is a common error and don’t we know it! The garbage collector isn’t totally magic and no guarantee that your app cannot / will not leak memory. There are various deliberate approaches / considerations that should be taken to avoid memory problems: Continue reading “Avoid Out-Of-Memory Problems in Android”