Spacewar: Initial import
This commit is contained in:
@@ -0,0 +1,106 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
|
||||
<!--
|
||||
Copyright (c) 2021 Qualcomm Technologies, Inc.
|
||||
All Rights Reserved.
|
||||
Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
-->
|
||||
|
||||
|
||||
<!--
|
||||
This XML file declares which system packages should be initially installed for new users based on
|
||||
their user type. All system packages on the device should ideally have an entry in an xml file
|
||||
(keyed by its manifest name).
|
||||
|
||||
Base user-types (every user will be at least one of these types) are:
|
||||
- SYSTEM (user 0)
|
||||
- FULL (any non-profile human user)
|
||||
- PROFILE (profile human user)
|
||||
the precise meaning of which is defined in
|
||||
frameworks/base/core/java/android/content/pm/UserInfo.java.
|
||||
|
||||
Changes to the whitelist during system updates can result in installing additional system packages
|
||||
to pre-existing users, but cannot uninstall pre-existing system packages from pre-existing users.
|
||||
|
||||
Full documentation at frameworks/base/data/etc/preinstalled-packages-platform.xml
|
||||
-->
|
||||
|
||||
<config>
|
||||
|
||||
<!-- qcrilOemHook -->
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qcrilmsgtunnel">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<!-- telephony-apps -->
|
||||
|
||||
<install-in-user-type package="com.qti.telephonysettings">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qualcomm.atfwd">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qti.callfeaturessetting">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qti.confdialer">
|
||||
<install-in user-type="SYSTEM" />
|
||||
<install-in user-type="FULL" />
|
||||
<install-in user-type="PROFILE" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qti.qualcomm.datastatusnotification">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qti.qualcomm.deviceinfo">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="org.codeaurora.ims">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="org.codeaurora.qti.nrNetworkSettingApp">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qti.telephonyservice">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qti.sam.service">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qti.xdivert">
|
||||
<install-in user-type="SYSTEM" />
|
||||
<install-in user-type="FULL" />
|
||||
</install-in-user-type>
|
||||
|
||||
<!-- telephony-internal -->
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qti.imsiprivacy.tests">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<!-- telephony-noship -->
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qti.devicestatisticsservice">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qualcomm.embms">
|
||||
<install-in user-type="SYSTEM" />
|
||||
</install-in-user-type>
|
||||
|
||||
<install-in-user-type package="com.qualcomm.qti.euiccresource">
|
||||
<install-in user-type="SYSTEM" />
|
||||
<install-in user-type="FULL" />
|
||||
</install-in-user-type>
|
||||
|
||||
</config>
|
||||
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
|
||||
<!--
|
||||
/* Copyright (c) 2017-2018, 2020 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following
|
||||
* disclaimer in the documentation and/or other materials provided
|
||||
* with the distribution.
|
||||
* * Neither the name of The Linux Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
||||
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
||||
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
||||
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
-->
|
||||
|
||||
<config>
|
||||
<!-- Broadcast actions that are currently whitelisted. -->
|
||||
<allow-implicit-broadcast action="org.codeaurora.intent.action.PRE_ALERTING_CALL_INFO" />
|
||||
<!-- These are location components that need to freely run in the background -->
|
||||
<allow-in-power-save package="com.qualcomm.location" />
|
||||
<hidden-api-whitelisted-app package="com.qualcomm.location" />
|
||||
<hidden-api-whitelisted-app package="com.skyhook.blp" />
|
||||
</config>
|
||||
Reference in New Issue
Block a user