Skip to content

Commit e2df6b8

Browse files
Update to v3.1.5
2 parents 147bd50 + db74b36 commit e2df6b8

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

apk/GPSLogger-3.1.5.apk

4.99 MB
Binary file not shown.

apk/GPSLogger-latest.apk

32.3 KB
Binary file not shown.

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ android {
3333

3434
// -----------------------------------------------------------------------------------------
3535
// We use the Semantic Versioning (https://semver.org/):
36-
versionName '3.1.4'
37-
versionCode 45
36+
versionName '3.1.5'
37+
versionCode 46
3838
// -----------------------------------------------------------------------------------------
3939

4040
vectorDrawables.useSupportLibrary = true
@@ -73,11 +73,11 @@ dependencies {
7373
implementation fileTree(dir: 'libs', include: ['*.jar'])
7474
testImplementation 'junit:junit:4.13.2'
7575

76-
implementation 'androidx.appcompat:appcompat:1.4.1'
76+
implementation 'androidx.appcompat:appcompat:1.4.2'
7777
implementation 'androidx.cardview:cardview:1.0.0'
7878
implementation 'androidx.recyclerview:recyclerview:1.2.1'
7979
implementation 'androidx.preference:preference:1.2.0'
80-
implementation 'com.google.android.material:material:1.5.0'
80+
implementation 'com.google.android.material:material:1.6.1'
8181

8282
implementation 'com.github.bumptech.glide:glide:3.8.0'
8383

app/src/main/java/eu/basicairdata/graziano/gpslogger/ExternalViewerChecker.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,12 @@ public void makeExternalViewersList() {
190190
a.mimeType = "application/vnd.google-earth.kml+xml";
191191
}
192192

193+
if (a.packageName.equals("com.mapswithme.maps.pro")) {
194+
// MAPS.ME v.14 is not opening GPX anymore!
195+
a.fileType = FILETYPE_KML;
196+
a.mimeType = "application/vnd.google-earth.kml+xml";
197+
}
198+
193199
// if (a.packageName.equals("com.vecturagames.android.app.gpxviewer")) {
194200
// // GPX Viewer saves a copy of the file if passed via FileProvider
195201
// a.requiresFileProvider = false;
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Workaround for the issue of MAPS.ME v14 opening GPX files
2+
- Update Android dependencies
652 KB
Binary file not shown.

0 commit comments

Comments
 (0)