Skip to content

Commit 570fb5a

Browse files
committed
- var: release preparations
1 parent 7e5e0dd commit 570fb5a

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [0.9.63] - 2025-11-22
7+
## [0.9.63] - 2025-02-17
88
### Added
99
- `extraNumOfObservations` variable in the `Location` object
1010

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Library for [Locus Map](https://www.locusmap.app) application for Android device
1616

1717
## Current version
1818

19-
Latest stable LT version: **0.9.62**
19+
Latest stable LT version: **0.9.63**
2020
Available versions on the maven repository: [here](https://repo1.maven.org/maven2/com/asamm/).
2121

2222
How to **update to new 0.9.x** version? More about it [here](https://github.com/asamm/locus-api/wiki/Update-to-version-0.9.0).

Diff for: locus-api-android-sample/src/main/AndroidManifest.xml

+22-8
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools">
44

5-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
5+
<uses-permission
6+
android:name="android.permission.READ_EXTERNAL_STORAGE"
67
android:maxSdkVersion="32" />
7-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
8+
<uses-permission
9+
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
810
android:maxSdkVersion="32" />
911
<uses-permission android:name="com.asamm.locus.permission.READ_GEOCACHING_DATA" />
1012
<uses-permission android:name="com.asamm.locus.permission.WRITE_GEOCACHING_DATA" />
1113

14+
<!-- &lt;!&ndash; Android 11, package visibility queries &ndash;&gt;-->
15+
<!-- &lt;!&ndash; https://medium.com/androiddevelopers/package-visibility-in-android-11-cc857f221cd9 &ndash;&gt;-->
16+
<!-- <queries>-->
17+
<!-- <package android:name="menion.android.locus" />-->
18+
<!-- <package android:name="menion.android.locus.pro" />-->
19+
<!-- <package android:name="menion.android.locus.gis" />-->
20+
<!-- </queries>-->
21+
1222
<application
1323
android:name=".MainApplication"
1424
android:allowBackup="false"
@@ -17,7 +27,8 @@
1727
android:theme="@style/AppTheme"
1828
tools:ignore="GoogleAppIndexingWarning">
1929

20-
<activity android:name=".MainActivity"
30+
<activity
31+
android:name=".MainActivity"
2132
android:exported="true">
2233

2334
<intent-filter>
@@ -72,8 +83,8 @@
7283

7384
<activity
7485
android:name=".ActivityGeocacheTools"
75-
android:label="GeocachingTools"
76-
android:exported="false">
86+
android:exported="false"
87+
android:label="GeocachingTools">
7788

7889
<!-- thanks to this, app appear in sub-menu of only geocache! -->
7990
<intent-filter>
@@ -90,7 +101,8 @@
90101
<activity android:name=".ActivityDashboard" />
91102

92103
<!-- receiver for handling of exported tracks -->
93-
<receiver android:name=".receivers.OnTrackExportedReceiver"
104+
<receiver
105+
android:name=".receivers.OnTrackExportedReceiver"
94106
android:exported="true">
95107

96108
<intent-filter>
@@ -100,15 +112,17 @@
100112
</receiver>
101113

102114
<!-- receiver for handling changes in points -->
103-
<receiver android:name=".receivers.PointChangedReceiver"
115+
<receiver
116+
android:name=".receivers.PointChangedReceiver"
104117
android:exported="true">
105118
<intent-filter>
106119
<action android:name="locus.api.android.ACTION_POINT_CHANGED" />
107120
</intent-filter>
108121
</receiver>
109122

110123
<!-- service that serve map tiles -->
111-
<service android:name=".mapServer.MapProvider"
124+
<service
125+
android:name=".mapServer.MapProvider"
112126
android:exported="true">
113127
<intent-filter>
114128
<action android:name="locus.api.android.ACTION_MAP_PROVIDER" />

0 commit comments

Comments
 (0)