blob: 4b5ac580ca025360ac591c3db38bfd470492e3f4 [file] [log] [blame]
Remi NGUYEN VANab08de32019-03-27 12:04:27 +09001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4 * Copyright (C) 2019 The Android Open Source Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
20 package="com.android.networkstack.permissionconfig"
21 android:sharedUserId="android.uid.networkstack"
Baligh Uddin2f561ba2019-09-13 19:03:40 -070022 android:versionCode="300000000"
Akshay815b53b2019-06-07 13:49:35 -070023 android:versionName="2019-09"
Baligh Uddind88d0e72020-01-04 15:14:21 -080024 >
Remi NGUYEN VANab08de32019-03-27 12:04:27 +090025 <!--
26 This package only exists to define the below permissions, and enforce that they are only
27 granted to apps sharing the same signature.
28 Permissions defined here are intended to be used only by the NetworkStack: both
29 NetworkStack and this stub APK are to be signed with a dedicated certificate to ensure
30 that, with the below permissions being signature permissions.
31
32 This APK *must* be installed, even if the NetworkStack app is not installed, because otherwise,
33 any application will be able to define this permission and the system will give that application
34 full access to the network stack.
35 -->
36 <permission android:name="android.permission.MAINLINE_NETWORK_STACK"
37 android:protectionLevel="signature"/>
38
39 <application android:name="com.android.server.NetworkPermissionConfig"/>
40</manifest>