1. Restore the original simple version of `configure.sh`
Restores 08e37f4 "Refactor configure.sh"
Reverts b87ee95b "Fixed configure.sh script and gh actions"
2. Use GitHub Secrets instead of a private git repository to enhance
security standards and ensure credentials are encrypted and safely
managed.
3. Document credentials used by GitHub Actions in docs/CREDENTIALS.md
4. Include `network_security_config.xml` directly into the repo
as it has nothing sensitive.
5. Include Apple WWDR intermediate certificates directly into the repo
as they are not sensitive and publicly available.
https://developer.apple.com/help/account/reference/wwdr-intermediate-certificates
6. Add `private.h` in the repository since it does not differ from
`private_defaults.h`.
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This is a FOSS re-implementation of google's play-services-location client
library by the µG project. Because it's Apache-2.0 licensed, this ought to be
permitted on F-droid but I'm not sure whether it'd be marked with the non-free
net anti-feature.
Theoretically it should work just as well on devices with Google's GMS but I'd
suggest testing this in the fdroid flavour first where there is no alternative
and switch all flavors over if that works on actual user devices. Doing so would
remove one major blocker towards achieving
https://github.com/organicmaps/organicmaps/issues/6906.
I have tested this on LineageOS with µG and on GrapheneOS with Google GMS. (You
need to explicitly allow fused location from GMS and give it location
permissions with the latter but it did work.)
For anyone else wanting to test this:
1. Ensure that you cannot get a GPS fix by checking GPSTest or GNSSLogger
2. Ensure that you are able to get a fused location using GNSSLogger
3. Install and open the f-droid build built from this branch
4. Wipe app data and open
5. Give it accurate location permission
6. If it asks you to download not just the world map but also your current area
via a checkbox above the download button, it works.
Signed-off-by: Atemu <git@atemu.net>
RoutePreview, PlaceListNavigation, Map templates are now deprecated.
Use MapWithContent template.
Remove PopToRootHack class as it is not needed.
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
Before all new Google Play releases were published for phased 10% rollout
in the Production track. Now, a new Google Play release is initially
uploaded into "Closed Beta" track for 100% rollout and then promoted into
"Production" track after testing. The "Closed Beta" track (misleadingly
called "alpha" in the code) is invite-only and currently contains about
~1k users imported Firebase App Tester databases. Invited users can opt in
to install new pre-release versions for testing directly via Google Play.
Android releases are now initially tagged with `YYYY.MM.DD-x-android-rc`
(release-candidate) tags instead of `YYYY.MM.DD-x-android`. The production
`YYYY.MM.DD-x-android` tag is added after promotion in Google Play. This
kicks-off the F-Droid process as well. Huawei's version remains unpublished
until Android gets a green light in Google Play.
This change has two primary outcomes:
1. Users now can receive pre-production ("rc") via Google Play.
This change uses invite-only "Closed Beta" track, but it can be
changed to "Open Beta" track later.
2. Android versions in Google Play are now published after pre-production
testing in a separate track in Google Play. Meanwhile, Google Play
runs Monkey for free in such tracks and sends useful pre-prod reports.
There are no changes in Firebase App Tester - it works as usual. The primary
difference between App Tester and Google Play Open/Closed Beta is that
AppTester uses "app.organicmaps.beta" applicationId while Google Play uses
"app.organicmaps" id. This efficiently means that versions from App Testers
can be installed in parallel with Google Play, while Google Play's
Open/Closed version update the production app.
Please don't get confused with the word "beta" used in different places.
Google Play Open/Closed Beta actually will receive only pre-production
quality builds. App Tester probably can continue to be used both for
pre-production and ad-hoc experiemental version ("alpha"?).
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
Auto-generated `app_id` strings was always `app.organicmaps` in
all release builds no matter of the applicationIdSuffix value.
Fixes#7387
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
Gradle doesn't recognize flavor-specific dependencies when
dependencies{} section is before android{} section:
```
* What went wrong:
A problem occurred evaluating project ':app'.
> Could not find method webImplementation() for arguments
[com.google.android.gms:play-services-location:21.1.0] on object of type
org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
```
No semantic changes.
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
Android Auto has been accepted by Google. Google Play ignores
"enabled=false" in AndroidManifest.xml anyway.
This reverts commit 8d17e90b7d.
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>