blob: 6e50459a1dd38abc5b8466691e4c0a9099a81597 [file] [log] [blame]
Remi NGUYEN VANa0fe0d42019-03-26 17:24:48 +09001//
2// Copyright (C) 2019 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Remi NGUYEN VAN90d9a8e2019-05-15 16:14:51 +090017java_defaults {
18 name: "NetworkPermissionConfigDefaults",
Remi NGUYEN VANa0fe0d42019-03-26 17:24:48 +090019 // TODO: mark app as hasCode=false in manifest once soong stops complaining about apps without
20 // a classes.dex.
21 srcs: ["src/**/*.java"],
22 platform_apis: true,
23 min_sdk_version: "28",
Remi NGUYEN VANa0fe0d42019-03-26 17:24:48 +090024 privileged: true,
25 manifest: "AndroidManifest.xml",
26}
Remi NGUYEN VAN90d9a8e2019-05-15 16:14:51 +090027
28// Stub APK to define permissions for NetworkStack
29android_app {
30 name: "NetworkPermissionConfig",
31 defaults: ["NetworkPermissionConfigDefaults"],
32 certificate: "networkstack",
33}
34
35// Alternative stub APK signed with platform certificate. To use with InProcessNetworkStack.
36android_app {
37 name: "PlatformNetworkPermissionConfig",
38 defaults: ["NetworkPermissionConfigDefaults"],
39 certificate: "platform",
40 overrides: ["NetworkPermissionConfig"],
41}