Skip to content

Commit

Permalink
Update for V2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
woheller69 committed May 19, 2023
1 parent 58d3d5e commit a9351f6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "org.woheller69.spritpreise"
minSdkVersion 26
targetSdkVersion 31
versionCode 22
versionName "2.2"
versionCode 23
versionName "2.3"

buildConfigField "String", "DEFAULT_API_KEY", "\"${project.findProperty("prop1")}\""
buildConfigField "String", "UNPATCHED_API_KEY", "\"OTgxMjBmODAtNzYwNy0zOTQxLTI3NGUtMDE5MGI0NDg2NmZh\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public void onLongItemClick(View view, int position) {
SQLiteHelper database = SQLiteHelper.getInstance(context.getApplicationContext());

IMapController mapController = holder.map.getController();
mapController.setZoom(12);
mapController.setZoom(12d);
GeoPoint startPoint = new GeoPoint(database.getCityToWatch(cityID).getLatitude(), database.getCityToWatch(cityID).getLongitude());
mapController.setCenter(startPoint);

Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/23.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Kartenansicht vergrößert
Monochromes Icon hinzugefügt
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/23.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Increased map size
Added monochrome icon

0 comments on commit a9351f6

Please sign in to comment.