mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-12-28 11:58:23 +01:00
Version 4.3.0-beta1. Tweak the name of the backup file.
This commit is contained in:
parent
34a9cee965
commit
0724dc861a
@ -6,8 +6,8 @@ android {
|
||||
applicationId "ml.docilealligator.infinityforreddit"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 30
|
||||
versionCode 60
|
||||
versionName "4.2.5"
|
||||
versionCode 61
|
||||
versionName "4.3.0-beta1"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
|
@ -132,7 +132,7 @@ public class BackupSettings {
|
||||
boolean result = false;
|
||||
try {
|
||||
String time = new SimpleDateFormat("yyyyMMdd-HHmmss").format(new Date(System.currentTimeMillis()));
|
||||
String fileName = "Infinity_For_Reddit_Settings_Backup_v" + BuildConfig.VERSION_NAME + "-" + time + ".zip";
|
||||
String fileName = "Infinity_For_Reddit_Settings_Backup_v" + BuildConfig.VERSION_NAME + "-" + BuildConfig.VERSION_CODE + "-" + time + ".zip";
|
||||
String filePath = context.getExternalCacheDir() + "/Backup/" + fileName;
|
||||
ZipFile zip = new ZipFile(filePath, "123321".toCharArray());
|
||||
ZipParameters zipParameters = new ZipParameters();
|
||||
|
Loading…
Reference in New Issue
Block a user