Skip to content

Commit

Permalink
Update to v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GrazianoCapelli committed Jan 14, 2023
2 parents 2883bd8 + f207e80 commit 966a9a8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
Binary file added apk/GPSLogger-3.2.1.apk
Binary file not shown.
Binary file modified apk/GPSLogger-latest.apk
Binary file not shown.
10 changes: 6 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ android {

// -----------------------------------------------------------------------------------------
// We use the Semantic Versioning (https://semver.org/):
versionName '3.2.0'
versionCode 49
versionName '3.2.1'
versionCode 50
// -----------------------------------------------------------------------------------------

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

implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.preference:preference:1.2.0'
implementation 'com.google.android.material:material:1.6.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.5.1'
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,9 @@ public void onClick(View v) {
// .concat(location.getLongitude() >= 0 ? "\"E" : "\"W"));
// Coordinates GG.GGGGGGGGG, to be preferred
ClipData clip = ClipData.newPlainText("Coordinates",
String.format(Locale.getDefault(), "%.9f", location.getLatitude())
String.format(Locale.US, "%.9f", location.getLatitude())
+ ", "
+ String.format(Locale.getDefault(), "%.9f", location.getLongitude())
+ String.format(Locale.US, "%.9f", location.getLongitude())
);
clipboard.setPrimaryClip(clip);
Toast toast = Toast.makeText(gpsApp.getApplicationContext(),
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/50.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fixed format of coordinates copied to clipboard in some locales
- Updated dependencies
Binary file added sourcecode/GPSLogger-3.2.1 - Source.zip
Binary file not shown.

0 comments on commit 966a9a8

Please sign in to comment.