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

@@ -466,7 +466,7 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
if (TextUtils.isEmpty(fname))
return uri;
File dir = new File(getCacheDir(), "shared");
File dir = new File(getFilesDir(), "shared");
if (!dir.exists())
dir.mkdir();