70 lines
2.6 KiB
Makefile
70 lines
2.6 KiB
Makefile
#
|
|
# Copyright (C) 2020 The LineageOS 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.
|
|
#
|
|
|
|
# Artifact path requirement allowlist
|
|
PRODUCT_ARTIFACT_PATH_REQUIREMENT_ALLOWED_LIST += \
|
|
system/app/GoogleExtShared/GoogleExtShared.apk \
|
|
system/app/GooglePrintRecommendationService/GooglePrintRecommendationService.apk \
|
|
system/etc/permissions/privapp-permissions-google.xml \
|
|
system/priv-app/DocumentsUIGoogle/DocumentsUIGoogle.apk \
|
|
system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk \
|
|
system/priv-app/TagGoogle/TagGoogle.apk
|
|
|
|
# Default notification/alarm sounds
|
|
PRODUCT_PRODUCT_PROPERTIES += \
|
|
ro.config.notification_sound=Eureka.ogg \
|
|
ro.config.alarm_alert=Fresh_start.ogg
|
|
|
|
# Default ringtone
|
|
PRODUCT_PRODUCT_PROPERTIES += \
|
|
ro.config.ringtone=Your_new_adventure.ogg
|
|
|
|
# Gboard Props
|
|
PRODUCT_PRODUCT_PROPERTIES += \
|
|
ro.com.google.ime.bs_theme=true \
|
|
ro.com.google.ime.theme_id=5 \
|
|
ro.com.google.ime.system_lm_dir=/product/usr/share/ime/google/d3_lms
|
|
|
|
# GMS Props
|
|
PRODUCT_PRODUCT_PROPERTIES += \
|
|
ro.opa.eligible_device=true
|
|
|
|
# GMS RRO overlay
|
|
PRODUCT_PACKAGES += \
|
|
GoogleSettingsOverlay \
|
|
PixelSetupWizardStringsOverlay
|
|
|
|
# SetupWizard Props
|
|
PRODUCT_PRODUCT_PROPERTIES += \
|
|
ro.setupwizard.enterprise_mode=1 \
|
|
ro.setupwizard.esim_cid_ignore=00000001 \
|
|
setupwizard.feature.baseline_setupwizard_enabled=true \
|
|
setupwizard.feature.day_night_mode_enabled=true \
|
|
setupwizard.feature.portal_notification=true \
|
|
setupwizard.feature.enable_quick_start_flow=true \
|
|
setupwizard.feature.enable_restore_anytime=true \
|
|
setupwizard.feature.enable_wifi_tracker=true \
|
|
setupwizard.feature.lifecycle_refactoring=true \
|
|
setupwizard.feature.notification_refactoring=true \
|
|
setupwizard.feature.show_pai_screen_in_main_flow.carrier1839=false \
|
|
setupwizard.feature.show_pixel_tos=true \
|
|
setupwizard.feature.show_support_link_in_deferred_setup=false \
|
|
setupwizard.feature.skip_button_use_mobile_data.carrier1839=true \
|
|
setupwizard.personal_safety_suw_enabled=true \
|
|
setupwizard.theme=glif_v4_light
|
|
|
|
$(call inherit-product, vendor/gms/common/common-vendor.mk)
|