Workaround AndroidX bug

This commit is contained in:
M66B
2019-04-20 14:50:01 +02:00
parent cfaf9ae553
commit d879ac3c7a
2 changed files with 37 additions and 8 deletions

View File

@@ -132,6 +132,13 @@ public class Helper {
static final float LOW_LIGHT = 0.6f;
static final float[] NEGATIVE = new float[]{
-1, 0, 0, 0, 255, // red
0, -1, 0, 0, 255, // green
0, 0, -1, 0, 255, // blue
0, 0, 0, 1, 0 // alpha
};
static final String FAQ_URI = "https://github.com/M66B/open-source-email/blob/master/FAQ.md";
static ThreadFactory backgroundThreadFactory = new ThreadFactory() {