2019-08-27 02:19:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 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.
|
|
|
|
*/
|
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-12-18 09:47:26 +00:00
|
|
|
package="com.android.networkstack.tethering"
|
2019-08-27 02:19:38 +00:00
|
|
|
android:sharedUserId="android.uid.networkstack">
|
|
|
|
|
2019-12-16 12:15:20 +00:00
|
|
|
<!-- Permissions must be defined here, and not in the base manifest, as the tethering
|
|
|
|
running in the system server process does not need any permission, and having
|
|
|
|
privileged permissions added would cause crashes on startup unless they are also
|
2021-11-03 17:09:26 +00:00
|
|
|
added to the privileged permissions allowlist for that package. EntitlementManager
|
|
|
|
would set exact alarm but declare SCHEDULE_EXACT_ALARM is not necessary here because
|
|
|
|
privilege application would be in the allowlist. -->
|
2019-12-16 12:15:20 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
2021-11-03 17:09:26 +00:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
2020-03-12 07:22:01 +00:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" />
|
2019-12-16 12:15:20 +00:00
|
|
|
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_USB" />
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
|
2020-01-13 08:09:42 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_DEVICE_CONFIG" />
|
2019-12-16 12:15:20 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY" />
|
2020-03-24 13:09:51 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
2020-01-09 16:21:17 +00:00
|
|
|
<uses-permission android:name="android.permission.TETHER_PRIVILEGED" />
|
2019-12-16 12:15:20 +00:00
|
|
|
<uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />
|
2020-01-10 05:27:24 +00:00
|
|
|
<uses-permission android:name="android.permission.UPDATE_DEVICE_STATS" />
|
2019-12-16 12:15:20 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
2021-12-03 21:36:47 +00:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
2019-12-16 12:15:20 +00:00
|
|
|
|
2020-03-24 13:09:51 +00:00
|
|
|
<protected-broadcast android:name="com.android.server.connectivity.tethering.DISABLE_TETHERING" />
|
|
|
|
|
2019-08-27 02:19:38 +00:00
|
|
|
<application
|
|
|
|
android:process="com.android.networkstack.process"
|
|
|
|
android:extractNativeLibs="false"
|
|
|
|
android:persistent="true">
|
2020-04-12 13:41:29 +00:00
|
|
|
<service android:name="com.android.networkstack.tethering.TetheringService"
|
2020-03-10 20:49:18 +00:00
|
|
|
android:permission="android.permission.MAINLINE_NETWORK_STACK"
|
|
|
|
android:exported="true">
|
2019-09-30 06:40:57 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.ITetheringConnector"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2019-08-27 02:19:38 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|