mirror of https://github.com/BOINC/boinc.git
android: bug fix for OutOfMemeoryError while loading slideshow, handle exception. reported in PlayStore.
This commit is contained in:
parent
984bef78ea
commit
84c5bd353d
|
@ -342,6 +342,7 @@ public class ClientStatus {
|
|||
}
|
||||
}
|
||||
} catch(Exception e) {if(Logging.WARNING) Log.w(Logging.TAG,"exception for project " + project.master_url,e);}
|
||||
catch (OutOfMemoryError oome) {if(Logging.WARNING) Log.w(Logging.TAG,"updateSlideshowImages, OutOfMemeryError");}
|
||||
}
|
||||
if(Logging.DEBUG) Log.d(Logging.TAG, "updateSlideshowImages() has added " + counter + " images.");
|
||||
if(Logging.DEBUG) Log.d(Logging.TAG,"updateSlideshowImages() slideshow contains " + slideshowImages.size() + " bitmaps.");
|
||||
|
|
Loading…
Reference in New Issue