Avoid cache dir quota

This commit is contained in:
M66B
2022-05-01 08:48:20 +02:00
parent ca4de7b1ee
commit 270b520b9f
10 changed files with 20 additions and 20 deletions

View File

@@ -132,7 +132,7 @@ public class AdapterCertificate extends RecyclerView.Adapter<AdapterCertificate.
if (certificate == null)
return null;
File dir = new File(context.getCacheDir(), "shared");
File dir = new File(context.getFilesDir(), "shared");
if (!dir.exists())
dir.mkdir();