new release
This commit is contained in:
parent
f84b96cfc6
commit
0e1391e89d
3 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,7 @@ android {
|
|||
applicationId "asgardius.page.s3manager"
|
||||
minSdk 21
|
||||
targetSdk 33
|
||||
versionCode 84
|
||||
versionCode 85
|
||||
versionName "0.10.0"
|
||||
setProperty("archivesBaseName", "s3-manager-$versionName")
|
||||
|
||||
|
|
|
@ -115,6 +115,7 @@ public class Settings extends AppCompatActivity {
|
|||
try {
|
||||
standaloneDatabaseProvider = new StandaloneDatabaseProvider(getApplicationContext());
|
||||
SimpleCache.delete(new File(getApplicationContext().getFilesDir(), "media"), standaloneDatabaseProvider);
|
||||
SimpleCache.delete(new File(getApplicationContext().getExternalFilesDirs(null)[getApplicationContext().getExternalFilesDirs(null).length-1], "media"), standaloneDatabaseProvider);
|
||||
standaloneDatabaseProvider.close();
|
||||
Toast.makeText(getApplicationContext(),getResources().getString(R.string.clearcache_ok), Toast.LENGTH_SHORT).show();
|
||||
} catch (Exception e) {
|
||||
|
|
Loading…
Reference in a new issue