blob: 86ebe3a3a669a389cf244d882b6819534b908da1 [file] [log] [blame]
Amit Mahajan98fe5e32019-12-03 17:21:41 -08001apex {
2 name: "com.android.telephony",
3
4 manifest: "apex_manifest.json",
5
6 // optional. if unspecified, a default one is auto-generated
7 androidManifest: "AndroidManifest.xml",
8
Amit Mahajanea6209f2019-12-05 00:05:51 -08009 java_libs: ["telephony-common", "ims-common"],
Amit Mahajan98fe5e32019-12-03 17:21:41 -080010 //apps: ["TeleService", "StkLib", "ONSLib"],
11 apps: ["StkLib"],
12
13 key: "com.android.telephony.key",
14 certificate: ":com.android.telephony.certificate",
15}
16
17apex_key {
18 name: "com.android.telephony.key",
19 public_key: "com.android.telephony.avbpubkey",
20 private_key: "com.android.telephony.pem",
21}
22
23android_app_certificate {
24 name: "com.android.telephony.certificate",
25 // This will use com.android.telephony.x509.pem (the cert) and
26 // com.android.telephony.pk8 (the private key)
27 certificate: "com.android.telephony",
Amit Mahajanea6209f2019-12-05 00:05:51 -080028}