[android] config: disable Google services in F-droid flavour

Signed-off-by: Atemu <git@atemu.net>
This commit is contained in:
Atemu 2024-11-23 16:46:53 +01:00 committed by Konstantin Pastbin
parent 32e100331a
commit 6eb641f4c7

View file

@ -194,7 +194,14 @@ public final class Config
public static boolean useGoogleServices()
{
return getBool(KEY_PREF_USE_GS, true);
// F-droid users expect non-free networks to be disabled by default
// https://t.me/organicmaps/47334
// Additionally, in the µG play-services-location library which is used for
// F-droid builds, GMS api availability is stubbed and always returns true.
// https://github.com/microg/GmsCore/issues/2309
// For more details, see the discussion in
// https://github.com/organicmaps/organicmaps/pull/9575
return getBool(KEY_PREF_USE_GS, !isFdroid());
}
public static void setUseGoogleService(boolean use)