Photo picker on some androids uses this path

but it's just a temp file so we can't keep it

(cherry picked from commit 16b027d82b552353fb88eeaa9c5b64f9ca77e0c4)
This commit is contained in:
Stephen Paul Weber 2024-10-22 21:56:46 -05:00 committed by Arne
parent 7323199d11
commit 1f84056c88

View file

@ -222,7 +222,7 @@ public class FileBackend {
final String androidDataPath =
Environment.getExternalStorageDirectory().getAbsolutePath() + "/Android/data/";
final File f = new File(path);
return path.startsWith(androidDataPath) || !f.canRead();
return path.startsWith(androidDataPath) || path.contains(".transforms/synthetic") || !f.canRead();
}
private static Paint createAntiAliasingPaint() {