cache drawable in dictionaries should not be static
app/src/main/java/eu/lepiller/nani/dictionary/Dictionary.java
| 28 | 28 | private String sha256; | |
| 29 | 29 | private File file, temporaryFile; | |
| 30 | 30 | ||
| 31 | - | private static Drawable drawable=null, newDrawable=null; | |
| 31 | + | private Drawable drawable=null, newDrawable=null; | |
| 32 | 32 | ||
| 33 | 33 | Dictionary(String name, String description, String fullDescription, File cacheDir, int fileSize, int entries, String hash) { | |
| 34 | 34 | this.name = name; |