Skip to content

Commit

Permalink
Update to v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GrazianoCapelli committed Jun 12, 2021
1 parent 3eb1e40 commit ed6b87d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
Binary file added apk/GPSLogger-3.0.1.apk
Binary file not shown.
Binary file modified apk/GPSLogger-latest.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ android {

// -----------------------------------------------------------------------------------------
// We use the Semantic Versioning (https://semver.org/):
versionName '3.0.0'
versionCode 38
versionName '3.0.1'
versionCode 39
// -----------------------------------------------------------------------------------------

vectorDrawables.useSupportLibrary = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1913,17 +1913,21 @@ public void run() {
}
if (track != null) {
// Delete track files
for (File f : fileFind(DIRECTORY_TEMP, track.getName())) {
Log.w("myApp", "[#] GPSApplication.java - Deleting: " + f.getAbsolutePath());
fileDelete(f.getAbsolutePath());
if (fileFind(DIRECTORY_TEMP, track.getName()) != null) {
for (File f : fileFind(DIRECTORY_TEMP, track.getName())) {
Log.w("myApp", "[#] GPSApplication.java - Deleting: " + f.getAbsolutePath());
fileDelete(f.getAbsolutePath());
}
}
// Delete thumbnail
fileDelete(getApplicationContext().getFilesDir() + "/Thumbnails/" + track.getId() + ".png");
// Delete exported files
if (deleteAlsoExportedFiles) {
for (File f : fileFind(DIRECTORY_EXPORT, track.getName())) {
Log.w("myApp", "[#] GPSApplication.java - Deleting: " + f.getAbsolutePath());
fileDelete(f.getAbsolutePath());
if (fileFind(DIRECTORY_EXPORT, track.getName()) != null) {
for (File f : fileFind(DIRECTORY_EXPORT, track.getName())) {
Log.w("myApp", "[#] GPSApplication.java - Deleting: " + f.getAbsolutePath());
fileDelete(f.getAbsolutePath());
}
}
}

Expand Down
Binary file added sourcecode/GPSLogger-3.0.1 - Source.zip
Binary file not shown.

0 comments on commit ed6b87d

Please sign in to comment.