Skip to content

Commit

Permalink
- var: release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
menion committed Feb 17, 2025
1 parent 7e5e0dd commit 570fb5a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.9.63] - 2025-11-22
## [0.9.63] - 2025-02-17
### Added
- `extraNumOfObservations` variable in the `Location` object

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Library for [Locus Map](https://www.locusmap.app) application for Android device

## Current version

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

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).
Expand Down
30 changes: 22 additions & 8 deletions locus-api-android-sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="com.asamm.locus.permission.READ_GEOCACHING_DATA" />
<uses-permission android:name="com.asamm.locus.permission.WRITE_GEOCACHING_DATA" />

<!-- &lt;!&ndash; Android 11, package visibility queries &ndash;&gt;-->
<!-- &lt;!&ndash; https://medium.com/androiddevelopers/package-visibility-in-android-11-cc857f221cd9 &ndash;&gt;-->
<!-- <queries>-->
<!-- <package android:name="menion.android.locus" />-->
<!-- <package android:name="menion.android.locus.pro" />-->
<!-- <package android:name="menion.android.locus.gis" />-->
<!-- </queries>-->

<application
android:name=".MainApplication"
android:allowBackup="false"
Expand All @@ -17,7 +27,8 @@
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">

<activity android:name=".MainActivity"
<activity
android:name=".MainActivity"
android:exported="true">

<intent-filter>
Expand Down Expand Up @@ -72,8 +83,8 @@

<activity
android:name=".ActivityGeocacheTools"
android:label="GeocachingTools"
android:exported="false">
android:exported="false"
android:label="GeocachingTools">

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

<!-- receiver for handling of exported tracks -->
<receiver android:name=".receivers.OnTrackExportedReceiver"
<receiver
android:name=".receivers.OnTrackExportedReceiver"
android:exported="true">

<intent-filter>
Expand All @@ -100,15 +112,17 @@
</receiver>

<!-- receiver for handling changes in points -->
<receiver android:name=".receivers.PointChangedReceiver"
<receiver
android:name=".receivers.PointChangedReceiver"
android:exported="true">
<intent-filter>
<action android:name="locus.api.android.ACTION_POINT_CHANGED" />
</intent-filter>
</receiver>

<!-- service that serve map tiles -->
<service android:name=".mapServer.MapProvider"
<service
android:name=".mapServer.MapProvider"
android:exported="true">
<intent-filter>
<action android:name="locus.api.android.ACTION_MAP_PROVIDER" />
Expand Down

0 comments on commit 570fb5a

Please sign in to comment.