Add prebuilts for satellite SOS feature
This feature will not be offered unless GMS is present. Change-Id: If0746362fb0e60ebe0c99cad554ce9a55f3fb7a1
This commit is contained in:
parent
1e4eb5a0e2
commit
07b9acdebf
3 changed files with 41 additions and 0 deletions
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
# product partition
|
# product partition
|
||||||
|
|
||||||
|
# Adaptive Connectivity
|
||||||
|
product/priv-app/SCONE-v37764/SCONE-v37764.apk;PRESIGNED
|
||||||
|
|
||||||
# AiAi
|
# AiAi
|
||||||
product/priv-app/AICorePrebuilt-aicore_20240509.01_RC02/AICorePrebuilt-aicore_20240509.01_RC02.apk;PRESIGNED
|
product/priv-app/AICorePrebuilt-aicore_20240509.01_RC02/AICorePrebuilt-aicore_20240509.01_RC02.apk;PRESIGNED
|
||||||
product/priv-app/DeviceIntelligenceNetworkPrebuilt-U.32_V.7_playstore_astrea_20240725.00_RC01/DeviceIntelligenceNetworkPrebuilt-U.32_V.7_playstore_astrea_20240725.00_RC01.apk;PRESIGNED
|
product/priv-app/DeviceIntelligenceNetworkPrebuilt-U.32_V.7_playstore_astrea_20240725.00_RC01/DeviceIntelligenceNetworkPrebuilt-U.32_V.7_playstore_astrea_20240725.00_RC01.apk;PRESIGNED
|
||||||
|
@ -70,6 +73,13 @@ product/priv-app/DiagMon/DiagMon.apk
|
||||||
product/priv-app/EuiccGoogle/EuiccGoogle.apk;PRESIGNED
|
product/priv-app/EuiccGoogle/EuiccGoogle.apk;PRESIGNED
|
||||||
product/priv-app/TetheringEntitlement/TetheringEntitlement.apk
|
product/priv-app/TetheringEntitlement/TetheringEntitlement.apk
|
||||||
|
|
||||||
|
# Satellite
|
||||||
|
product/etc/default-permissions/default-permissions-stargate.xml
|
||||||
|
product/etc/permissions/com.google.android.apps.stargate.support.xml
|
||||||
|
product/etc/permissions/com.google.android.apps.stargate.xml
|
||||||
|
product/etc/sysconfig/satellite_sos.xml
|
||||||
|
product/priv-app/SatelliteGatewayPrebuilt/SatelliteGatewayPrebuilt.apk;PRESIGNED
|
||||||
|
|
||||||
# VZW
|
# VZW
|
||||||
product/app/VZWAPNLib/VZWAPNLib.apk;PRESIGNED
|
product/app/VZWAPNLib/VZWAPNLib.apk;PRESIGNED
|
||||||
product/etc/permissions/com.android.omadm.service.xml
|
product/etc/permissions/com.android.omadm.service.xml
|
||||||
|
@ -166,6 +176,11 @@ system_ext/etc/permissions/oemrilhook.xml
|
||||||
system_ext/framework/oemrilhook.jar
|
system_ext/framework/oemrilhook.jar
|
||||||
system_ext/priv-app/OemRilService/OemRilService.apk;PRESIGNED
|
system_ext/priv-app/OemRilService/OemRilService.apk;PRESIGNED
|
||||||
|
|
||||||
|
# Satellite
|
||||||
|
system_ext/etc/permissions/privapp-permissions-satellite.xml
|
||||||
|
system_ext/priv-app/PixelSatelliteService/PixelSatelliteService.apk
|
||||||
|
system_ext/priv-app/VendorSatelliteService/VendorSatelliteService.apk
|
||||||
|
|
||||||
# VZW
|
# VZW
|
||||||
system_ext/etc/permissions/vzw_mvs_permissions.xml
|
system_ext/etc/permissions/vzw_mvs_permissions.xml
|
||||||
system_ext/priv-app/MyVerizonServices/MyVerizonServices.apk;PRESIGNED
|
system_ext/priv-app/MyVerizonServices/MyVerizonServices.apk;PRESIGNED
|
||||||
|
|
22
conf/allowlist_satellite.xml
Normal file
22
conf/allowlist_satellite.xml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2024 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.
|
||||||
|
-->
|
||||||
|
<config>
|
||||||
|
<!-- SCONE must get device location for satellite emergency communications. -->
|
||||||
|
<allow-ignore-location-settings package="com.google.android.apps.scone" attributionTag="satellite_esos" />
|
||||||
|
|
||||||
|
<!-- Satellite access controller must get device location for satellite emergency communications. -->
|
||||||
|
<allow-ignore-location-settings package="com.android.phone" attributionTag="telephony" />
|
||||||
|
</config>
|
|
@ -22,6 +22,10 @@ PRODUCT_PACKAGES += \
|
||||||
PRODUCT_SYSTEM_SERVER_JARS += \
|
PRODUCT_SYSTEM_SERVER_JARS += \
|
||||||
system_ext:comet-services
|
system_ext:comet-services
|
||||||
|
|
||||||
|
# Satellite
|
||||||
|
PRODUCT_COPY_FILES += \
|
||||||
|
$(DEVICE_PATH)/conf/allowlist_satellite.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/allowlist_satellite.xml
|
||||||
|
|
||||||
# wireless_charger HAL service
|
# wireless_charger HAL service
|
||||||
include device/google/gs-common/wireless_charger/wireless_charger.mk
|
include device/google/gs-common/wireless_charger/wireless_charger.mk
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue