forked from organicmaps/organicmaps
[android] config: disable Google services in F-droid flavour
Signed-off-by: Atemu <git@atemu.net>
This commit is contained in:
parent
32e100331a
commit
6eb641f4c7
1 changed files with 8 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue