• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15
16package {
17    // See: http://go/android-license-faq
18    // A large-scale-change added 'default_applicable_licenses' to import
19    // all of the 'license_kinds' from "packages_modules_DnsResolver_license"
20    // to get the below license kinds:
21    //   SPDX-license-identifier-Apache-2.0
22    default_applicable_licenses: ["packages_modules_DnsResolver_license"],
23}
24
25apex {
26    name: "com.android.resolv",
27    manifest: "manifest.json",
28    multilib: {
29        first: {
30             native_shared_libs: ["libnetd_resolv"],
31        },
32    },
33    key: "com.android.resolv.key",
34    certificate: ":com.android.resolv.certificate",
35
36    // Use a custom AndroidManifest.xml used for API targeting.
37    androidManifest: "AndroidManifest.xml",
38
39    // Indicates that pre-installed version of this apex can be compressed.
40    // Whether it actually will be compressed is controlled on per-device basis.
41    compressible: true,
42
43    // IMPORTANT:  q-launched-apex-module enables the build system to make
44    // sure the package compatible to Android 10 in two ways:
45    // - build the APEX package compatible to Android 10
46    //   so that the package can be installed.
47    // - build artifacts (lib/javalib/bin) against Android 10 SDK
48    //   so that the artifacts can run.
49    defaults: ["q-launched-dcla-enabled-apex-module"],
50}
51
52apex_key {
53    name: "com.android.resolv.key",
54    public_key: "com.android.resolv.avbpubkey",
55    private_key: "com.android.resolv.pem",
56}
57
58android_app_certificate {
59     name: "com.android.resolv.certificate",
60     // will use cert.pk8 and cert.x509.pem
61     certificate: "testcert",
62}
63