Override all microG defaults to disabled

TODO after fixed:
SafetyNet: https://github.com/microg/GmsCore/issues/1971
Geocoder: https://github.com/microg/GmsCore/issues/1972

Signed-off-by: Tad <tad@spotco.us>
This commit is contained in:
Tad 2023-07-04 14:48:09 -04:00
parent a96f74ca28
commit c9a7ff8bba
No known key found for this signature in database
GPG Key ID: B286E9F57A07424B
2 changed files with 33 additions and 1 deletions

View File

@ -22,7 +22,8 @@ PRODUCT_PROPERTY_OVERRIDES += \
#Copy extra files
PRODUCT_COPY_FILES += \
vendor/divested/prebuilts/etc/additional_fdroid_repos.xml:system/etc/org.fdroid.fdroid/additional_repos.xml \
vendor/divested/prebuilts/etc/additional_fdroid_repos.xml:system/etc/org.fdroid.basic/additional_repos.xml
vendor/divested/prebuilts/etc/additional_fdroid_repos.xml:system/etc/org.fdroid.basic/additional_repos.xml \
vendor/divested/prebuilts/etc/microg.xml:system/etc/microg.xml
#Include packages
include vendor/divested/packages.mk

View File

@ -0,0 +1,31 @@
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<!-- Default disable 'Google device registration > Register device' -->
<boolean name="checkin_enable_service" value="false" />
<!-- Default disable 'Cloud Messaging > Receive push notifications' -->
<boolean name="gcm_enable_mcs_service" value="false" />
<!-- Default disable 'Google SafetyNet > Allow device attestation' -->
<boolean name="safetynet_enabled" value="false" />
<boolean name="droidguard_enabled" value="false" />
<!-- Default disable 'Location > Wi-Fi location > Request from Mozilla' -->
<boolean name="location_wifi_mls" value="false" />
<!-- Default disable 'Location > Wi-Fi location > Request from Hotspot' -->
<boolean name="location_wifi_moving" value="false" />
<!-- Default disable 'Location > Wi-Fi location > Remember from GPS' -->
<boolean name="location_wifi_learning" value="false" />
<!-- Default disable 'Location > Mobile network location > Request from Mozilla' -->
<boolean name="location_cell_mls" value="false" />
<!-- Default disable 'Location > Mobile network location > Remember from GPS' -->
<boolean name="location_cell_learning" value="false" />
<!-- Default disable 'Exposure Notifications > Use Exposure Notifications' -->
<boolean name="exposure_scanner_enabled" value="false" />
</map>