Skip to content

Commit 966a9a8

Browse files
Update to v3.2.1
2 parents 2883bd8 + f207e80 commit 966a9a8

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

apk/GPSLogger-3.2.1.apk

5.16 MB
Binary file not shown.

apk/GPSLogger-latest.apk

131 KB
Binary file not shown.

app/build.gradle

+6-4
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.2.0'
37-
versionCode 49
36+
versionName '3.2.1'
37+
versionCode 50
3838
// -----------------------------------------------------------------------------------------
3939

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

76-
implementation 'androidx.appcompat:appcompat:1.4.2'
76+
implementation 'androidx.appcompat:appcompat:1.5.1'
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.6.1'
80+
implementation 'com.google.android.material:material:1.7.0'
81+
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.5.1'
82+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
8183

8284
implementation 'com.github.bumptech.glide:glide:3.8.0'
8385

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ public void onClick(View v) {
263263
// .concat(location.getLongitude() >= 0 ? "\"E" : "\"W"));
264264
// Coordinates GG.GGGGGGGGG, to be preferred
265265
ClipData clip = ClipData.newPlainText("Coordinates",
266-
String.format(Locale.getDefault(), "%.9f", location.getLatitude())
266+
String.format(Locale.US, "%.9f", location.getLatitude())
267267
+ ", "
268-
+ String.format(Locale.getDefault(), "%.9f", location.getLongitude())
268+
+ String.format(Locale.US, "%.9f", location.getLongitude())
269269
);
270270
clipboard.setPrimaryClip(clip);
271271
Toast toast = Toast.makeText(gpsApp.getApplicationContext(),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Fixed format of coordinates copied to clipboard in some locales
2+
- Updated dependencies
688 KB
Binary file not shown.

0 commit comments

Comments
 (0)