blob: fbb70db68022a8e7d664275a6c35eb22928f540b [file] [log] [blame]
Bob Badour1fcc3d72021-02-12 18:21:19 -08001package {
2 // See: http://go/android-license-faq
Bob Badourb963ff52022-01-27 19:26:46 -08003 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour1fcc3d72021-02-12 18:21:19 -08004}
5
Hall Liu029bf052019-12-12 19:03:44 -08006apex_defaults {
7 name: "com.android.telephony-defaults",
Amit Mahajan98fe5e32019-12-03 17:21:41 -08008
9 // optional. if unspecified, a default one is auto-generated
10 androidManifest: "AndroidManifest.xml",
11
Jeff Davidson4a042102019-12-26 21:42:45 +000012 //java_libs: ["telephony-common", "ims-common", "voip-common"],
Amit Mahajan98fe5e32019-12-03 17:21:41 -080013 //apps: ["TeleService", "StkLib", "ONSLib"],
Amit Mahajan98fe5e32019-12-03 17:21:41 -080014
15 key: "com.android.telephony.key",
16 certificate: ":com.android.telephony.certificate",
Mathew Inwood75b4a212021-02-16 13:59:53 +000017
18 updatable: false,
Amit Mahajan98fe5e32019-12-03 17:21:41 -080019}
20
Hall Liu029bf052019-12-12 19:03:44 -080021apex {
22 name: "com.android.telephony",
23 manifest: "apex_manifest.json",
Amit Mahajana81a3202020-02-06 14:59:46 -080024 //apps: ["StkLib"],
Hall Liu029bf052019-12-12 19:03:44 -080025
26 defaults:["com.android.telephony-defaults"],
27}
28
Amit Mahajan98fe5e32019-12-03 17:21:41 -080029apex_key {
30 name: "com.android.telephony.key",
31 public_key: "com.android.telephony.avbpubkey",
32 private_key: "com.android.telephony.pem",
33}
34
35android_app_certificate {
36 name: "com.android.telephony.certificate",
37 // This will use com.android.telephony.x509.pem (the cert) and
38 // com.android.telephony.pk8 (the private key)
39 certificate: "com.android.telephony",
Amit Mahajana81a3202020-02-06 14:59:46 -080040}