Delete zip after exporting

This commit is contained in:
PabloG02 2023-04-07 22:39:16 +02:00 committed by Billy Laws
parent b24bf9eb91
commit 92c6eecfc8
1 changed files with 5 additions and 0 deletions

View File

@ -185,4 +185,9 @@ class AppDialog : BottomSheetDialogFragment() {
}
}
}
override fun onDestroyView(){
super.onDestroyView()
File("$savesFolderRoot${item.titleId}.zip").delete()
}
}