1package { 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 10apex_defaults { 11 name: "com.android.telephony-defaults", 12 13 // optional. if unspecified, a default one is auto-generated 14 androidManifest: "AndroidManifest.xml", 15 16 //java_libs: ["telephony-common", "ims-common", "voip-common"], 17 //apps: ["TeleService", "StkLib", "ONSLib"], 18 19 key: "com.android.telephony.key", 20 certificate: ":com.android.telephony.certificate", 21 22 updatable: false, 23} 24 25apex { 26 name: "com.android.telephony", 27 manifest: "apex_manifest.json", 28 //apps: ["StkLib"], 29 30 defaults:["com.android.telephony-defaults"], 31} 32 33apex_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", 44} 45