26 lines
619 B
Makefile
26 lines
619 B
Makefile
# GMS
|
|
ifeq ($(WITH_GMS),true)
|
|
WITH_GMS_COMMS_SUITE := true
|
|
endif
|
|
|
|
# Sensitive Phone Numbers list
|
|
PRODUCT_COPY_FILES += \
|
|
vendor/tequila/prebuilt/common/etc/sensitive_pn.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/sensitive_pn.xml
|
|
|
|
# World APN list
|
|
PRODUCT_PACKAGES += \
|
|
apns-conf.xml
|
|
|
|
# Telephony packages
|
|
PRODUCT_PACKAGES += \
|
|
messaging \
|
|
Stk
|
|
|
|
# Tethering - allow without requiring a provisioning app
|
|
# (for devices that check this)
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
net.tethering.noprovisioning=true
|
|
|
|
# Disable mobile data by default
|
|
PRODUCT_PRODUCT_PROPERTIES += \
|
|
ro.com.android.mobiledata=false
|