blob: a0e57139549c5a41d6b2895419e70ed371aae190 [file] [log] [blame]
Bob Badour1fcc3d72021-02-12 18:21:19 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "packages_services_Telephony_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["packages_services_Telephony_license"],
8}
9
Hall Liu029bf052019-12-12 19:03:44 -080010apex_defaults {
11 name: "com.android.telephony-defaults",
Amit Mahajan98fe5e32019-12-03 17:21:41 -080012
13 // optional. if unspecified, a default one is auto-generated
14 androidManifest: "AndroidManifest.xml",
15
Jeff Davidson4a042102019-12-26 21:42:45 +000016 //java_libs: ["telephony-common", "ims-common", "voip-common"],
Amit Mahajan98fe5e32019-12-03 17:21:41 -080017 //apps: ["TeleService", "StkLib", "ONSLib"],
Amit Mahajan98fe5e32019-12-03 17:21:41 -080018
19 key: "com.android.telephony.key",
20 certificate: ":com.android.telephony.certificate",
Mathew Inwood75b4a212021-02-16 13:59:53 +000021
22 updatable: false,
Amit Mahajan98fe5e32019-12-03 17:21:41 -080023}
24
Hall Liu029bf052019-12-12 19:03:44 -080025apex {
26 name: "com.android.telephony",
27 manifest: "apex_manifest.json",
Amit Mahajana81a3202020-02-06 14:59:46 -080028 //apps: ["StkLib"],
Hall Liu029bf052019-12-12 19:03:44 -080029
30 defaults:["com.android.telephony-defaults"],
31}
32
Amit Mahajan98fe5e32019-12-03 17:21:41 -080033apex_key {
34 name: "com.android.telephony.key",
35 public_key: "com.android.telephony.avbpubkey",
36 private_key: "com.android.telephony.pem",
37}
38
39android_app_certificate {
40 name: "com.android.telephony.certificate",
41 // This will use com.android.telephony.x509.pem (the cert) and
42 // com.android.telephony.pk8 (the private key)
43 certificate: "com.android.telephony",
Amit Mahajana81a3202020-02-06 14:59:46 -080044}