Signed-off-by: Tad <tad@spotco.us>
This commit is contained in:
Tad 2023-07-06 16:37:45 -04:00
parent a1a3cbb94e
commit 492ed24ca2
No known key found for this signature in database
GPG key ID: B286E9F57A07424B
7 changed files with 40 additions and 7 deletions

View file

@ -0,0 +1,31 @@
#
# Copyright (C) 2016 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Set strict defaults for microG
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := microg.xml
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_PATH := $(TARGET_OUT_PRODUCT_ETC)
LOCAL_SRC_FILES := $(LOCAL_MODULE)
LOCAL_PRODUCT_MODULE := true
include $(BUILD_PREBUILT)

View file

@ -0,0 +1,37 @@
<?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" />
<!-- Block 'Google SafetyNet > Advanced > DroidGuard operation mode > Embedded' -->
<boolean name="droidguard_force_local_disabled" value="true" />
<!-- 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 'Location > Address resolver > Use Nominatim' -->
<boolean name="location_geocoder_nominatim" value="false" />
<!-- Default disable 'Exposure Notifications > Use Exposure Notifications' -->
<boolean name="exposure_scanner_enabled" value="false" />
</map>